This is a static copy of a profile report

Home

subplot>datasiblings (Calls: 4, Time: 0.004 s)
Generated 18-May-2021 16:05:22 using performance time.
subfunction in file /usr/local/MATLAB/R2021a/toolbox/matlab/graph2d/subplot.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
subplotfunction4
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
752
sibs = parent.Children;
40.002 s59.5%
755
nondatachild(i) = isappdata(si...
60.001 s19.0%
756
end
60.000 s6.9%
754
for i=length(sibs):-1:1
40.000 s5.5%
757
sibs(nondatachild) = [];
40.000 s4.3%
All other lines  0.000 s4.8%
Totals  0.004 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
...nPane>AnnotationPane.getParentImplclass method60.001 s28.6%
Self time (built-ins, overhead, etc.)  0.003 s71.4%
Totals  0.004 s100% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function11
Non-code lines (comments, blank lines)4
Code lines (lines that can run)7
Code lines that did run7
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
time 
Calls 
 line
 748 
function sibs = datasiblings(parent) 
 749 
% Returns any siblings which do not have the appdata 'NonDataObject'. In 
 750 
% other words, returns "real" axes, not things like legend or scribe objects.
 751 
%
  0.002 
      4 
 752
    sibs = parent.Children; 
< 0.001 
      4 
 753
    nondatachild = logical([]); 
< 0.001 
      4 
 754
    for i=length(sibs):-1:1 
< 0.001 
      6 
 755
        nondatachild(i) = isappdata(sibs(i),'NonDataObject'); 
< 0.001 
      6 
 756
    end 
< 0.001 
      4 
 757
    sibs(nondatachild) = []; 
< 0.001 
      4 
 758
end 

Other subfunctions in this file are not included in this listing.