This is a static copy of a profile report

Home

graphics\private\clo>find_kids (1 call, 0.000 sec)
Generated 15-Mar-2007 12:02:07 using real time.
M-subfunction in file C:\Program Files\MATLAB71\toolbox\matlab\graphics\private\clo.m
[Copy to new window for comparing multiple runs]

Parents (calling functions)

Function NameFunction TypeCalls
graphics\private\cloM-function1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
87
hsave_out = [];
10.000 s100.0%
88
for kid=hsave(:)'
10 s0%
Other lines & overhead  0 s0%
Totals  0.000 s100% 
Children (called functions)
No children
M-Lint results
Line numberMessage
91Use && instead of & as the AND operator in (scalar) conditional statements.
Coverage results
[ Show coverage for parent directory ]
Total lines in file17
Non-code lines (comments, blank lines)5
Code lines (lines that can run)12
Code lines that did run2
Code lines that did not run10
Coverage (did run/can run)16.67 %
Function listing
   time   calls  line
83 function hsave_out = find_kids(obj, hsave)
84 %
85 %
86 %
< 0.01 1 87 hsave_out = [];
1 88 for kid=hsave(:)'
89 while ~isempty(kid)
90 parent = get(kid,'parent');
91 if ~isempty(parent) & parent == obj
92 hsave_out(end + 1) = kid;
93 break;
94 else
95 kid = parent;
96 end
97 end
98 end
99