This is a static copy of a profile reportHome
imagesci/private/readtif>isPositiveFiniteIntegerScalar (11550 calls, 0.290 sec)
Generated 05-Nov-2014 07:52:37 using cpu time.
subfunction in file /usr1/opt/matlab/7.13/toolbox/matlab/imagesci/private/readtif.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 |
224 | tf = isnumeric(values) &&a... | 11550 | 0.200 s | 69.0% |  |
228 | (numel(values) == 1); | 11550 | 0.020 s | 6.9% |  |
All other lines | | | 0.070 s | 24.1% |  |
Totals | | | 0.290 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 7 |
Non-code lines (comments, blank lines) | 5 |
Code lines (lines that can run) | 2 |
Code lines that did run | 2 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
222 function tf = isPositiveFiniteIntegerScalar(values)
223
0.20 11550 224 tf = isnumeric(values) && ...
225 all(rem(values, 1) == 0) && ...
226 all(~isinf(values)) && ...
227 all(values > 0) && ...
0.02 11550 228 (numel(values) == 1);