This is a static copy of a profile reportHome
close>checkfigs (35 calls, 0.000 sec)
Generated 15-Mar-2007 12:01:46 using real time.
M-subfunction in file C:\Program Files\MATLAB71\toolbox\matlab\graphics\close.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Function Name | Function Type | Calls |
close | M-function | 35 |
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
196 | status = 1; | 35 | 0.000 s | 100.0% |  |
202 | end | 46 | 0 s | 0% |  |
198 | if ~ishandle(h(i)) | ~strcmp(g... | 46 | 0 s | 0% |  |
197 | for i=1:length(h) | 35 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 100% | |
Children (called functions)
No childrenM-Lint results
Line number | Message |
198 | Use || instead of | as the OR operator in (scalar) conditional statements. |
Coverage results
[ Show coverage for parent directory ]
Total lines in file | 8 |
Non-code lines (comments, blank lines) | 1 |
Code lines (lines that can run) | 7 |
Code lines that did run | 4 |
Code lines that did not run | 3 |
Coverage (did run/can run) | 57.14 % |
Function listing
time calls line
195 function status = checkfigs(h)
< 0.01 35 196 status = 1;
35 197 for i=1:length(h)
46 198 if ~ishandle(h(i)) | ~strcmp(get(h(i),'type'),'figure')
199 status = 0;
200 return
201 end
46 202 end