This is a static copy of a profile reportHome
maketform>isfinitedouble (6884 calls, 0.150 sec)
Generated 05-Nov-2014 07:53:06 using cpu time.
subfunction in file /usr1/opt/matlab/7.13/toolbox/images/images/maketform.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 |
772 | q = isreal(x) && all(i... | 6884 | 0.070 s | 46.7% |  |
771 | if q | 6884 | 0.030 s | 20.0% |  |
773 | end | 6884 | 0.020 s | 13.3% |  |
770 | q = isa(x,'double'); | 6884 | 0.010 s | 6.7% |  |
All other lines | | | 0.020 s | 13.3% |  |
Totals | | | 0.150 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 8 |
Non-code lines (comments, blank lines) | 4 |
Code lines (lines that can run) | 4 |
Code lines that did run | 4 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
766 function q = isfinitedouble( x )
767
768 % Return true iff x is a finite, real-valued double array.
769
0.01 6884 770 q = isa(x,'double');
0.03 6884 771 if q
0.07 6884 772 q = isreal(x) && all(isfinite(x(:)));
0.02 6884 773 end
Other subfunctions in this file are not included in this listing.