This is a static copy of a profile report

Home

allchild (1 call, 0.000 sec)
Generated 15-Mar-2007 12:02:04 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\uitools\allchild.m
[Copy to new window for comparing multiple runs]

Parents (calling functions)

Function NameFunction TypeCalls
imu...ls\private\isSingleImageDefaultPosM-function1
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
24
set(0,'ShowHiddenHandles',Temp...
10 s0%
23
ChildList=get(HandleList,'Chil...
10 s0%
22
set(0,'ShowHiddenHandles','on'...
10 s0%
21
Temp=get(0,'ShowHiddenHandles'...
10 s0%
17
if ~all(ishandle(HandleList)),
10 s0%
Other lines & overhead  0 s0%
Totals  0.000 s0% 
Children (called functions)
No children
M-Lint results
Line numberMessage
1Extra semicolon is unnecessary.
Coverage results
[ Show coverage for parent directory ]
Total lines in file24
Non-code lines (comments, blank lines)16
Code lines (lines that can run)8
Code lines that did run6
Code lines that did not run2
Coverage (did run/can run)75.00 %
Function listing
   time   calls  line
1 function ChildList=allchild(HandleList);
2 %ALLCHILD Get all object children
3 % ChildList=ALLCHILD(HandleList) returns the list of all children
4 % (including ones with hidden handles) for each handle. If
5 % HandleList is a single element, the output is returned in a
6 % vector. Otherwise, the output is a cell array.
7 %
8 % For example, try get(gca,'children') and allchild(gca).
9 %
10 % See also GET, FINDALL.
11
12 % Loren Dean
13 % Copyright 1984-2002 The MathWorks, Inc.
14 % $Revision: 1.15 $ $Date: 2002/04/15 03:24:08 $
15
1 16 error(nargchk(1,1,nargin));
1 17 if ~all(ishandle(HandleList)),
18 error('Invalid handles passed to ALLCHILD.')
19 end
20
1 21 Temp=get(0,'ShowHiddenHandles');
1 22 set(0,'ShowHiddenHandles','on');
1 23 ChildList=get(HandleList,'Children');
1 24 set(0,'ShowHiddenHandles',Temp);