This is a static copy of a profile reportHome
linkaxes>local_is2D (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:45 using cpu time.
subfunction in file /usr/local/MATLAB/R2011a/toolbox/matlab/graphics/linkaxes.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Function Name | Function Type | Calls |
linkaxes | function | 1 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
139 | end | 3 | 0 s | 0% |  |
138 | bool(n) = logical(sum(campos(a... | 3 | 0 s | 0% |  |
137 | for n = 1:length(ax) | 1 | 0 s | 0% |  |
136 | bool = false(1,length(ax)); | 1 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
camtarget | function | 3 | 0 s | 0% |  |
campos | function | 3 | 0 s | 0% |  |
Self time (built-ins, overhead, etc.) | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Code Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 6 |
Non-code lines (comments, blank lines) | 2 |
Code lines (lines that can run) | 4 |
Code lines that did run | 4 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
134 function [bool] = local_is2D(ax)
135 % Don't call is2D.m for now since that only considers x-y plots
1 136 bool = false(1,length(ax));
1 137 for n = 1:length(ax)
3 138 bool(n) = logical(sum(campos(ax(n))-camtarget(ax(n))==0)==2);
3 139 end