This is a static copy of a profile reportHome
condest>condestf (606 calls, 0.020 sec)
Generated 05-Nov-2014 07:52:56 using cpu time.
nested function in file /usr1/opt/matlab/7.13/toolbox/matlab/matfun/condest.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
79 | f = U\(L\X); | 202 | 0.010 s | 50.0% |  |
75 | f = max(size(L)); | 202 | 0.010 s | 50.0% |  |
83 | end | 606 | 0 s | 0% |  |
78 | elseif isequal(flag,'notransp'... | 202 | 0 s | 0% |  |
77 | f = isreal(L) && isrea... | 202 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0.020 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 12 |
Non-code lines (comments, blank lines) | 2 |
Code lines (lines that can run) | 10 |
Code lines that did run | 7 |
Code lines that did not run | 3 |
Coverage (did run/can run) | 70.00 % |
Function listing
time calls line
72 function f = condestf(flag, X)
73 %CONDESTF Function used by CONDEST.
606 74 if isequal(flag,'dim')
0.01 202 75 f = max(size(L));
404 76 elseif isequal(flag,'real')
202 77 f = isreal(L) && isreal(U);
202 78 elseif isequal(flag,'notransp')
0.01 202 79 f = U\(L\X);
80 elseif isequal(flag,'transp')
81 f = L'\(U'\X);
82 end
606 83 end
Other subfunctions in this file are not included in this listing.