This is a static copy of a profile reportHome
condest>condestf (720 calls, 0.033 sec)
Generated 05-Aug-2011 13:03:51 using cpu time.
nested function in file /usr/local/MATLAB/R2011a/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 |
77 | f = isreal(L) && isrea... | 240 | 0.011 s | 33.3% |  |
74 | if isequal(flag,'dim') | 720 | 0.011 s | 33.3% |  |
83 | end | 720 | 0 s | 0% |  |
79 | f = U\(L\X); | 240 | 0 s | 0% |  |
78 | elseif isequal(flag,'notransp'... | 240 | 0 s | 0% |  |
All other lines | | | 0.011 s | 33.3% |  |
Totals | | | 0.033 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.
0.01 720 74 if isequal(flag,'dim')
240 75 f = max(size(L));
480 76 elseif isequal(flag,'real')
0.01 240 77 f = isreal(L) && isreal(U);
240 78 elseif isequal(flag,'notransp')
240 79 f = U\(L\X);
80 elseif isequal(flag,'transp')
81 f = L'\(U'\X);
82 end
720 83 end
Other subfunctions in this file are not included in this listing.