This is a static copy of a profile reportHome
linkaxes>localRemoveLink (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 |
127 | end | 3 | 0 s | 0% |  |
124 | if any(ishandle(hlink)) | 3 | 0 s | 0% |  |
123 | hlink = getappdata(ax(n),KEY); | 3 | 0 s | 0% |  |
121 | for n = 1:length(ax) | 1 | 0 s | 0% |  |
119 | KEY = 'graphics_linkaxes'; | 1 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 11 |
Non-code lines (comments, blank lines) | 4 |
Code lines (lines that can run) | 7 |
Code lines that did run | 5 |
Code lines that did not run | 2 |
Coverage (did run/can run) | 71.43 % |
Function listing
time calls line
117 function localRemoveLink(ax)
118
1 119 KEY = 'graphics_linkaxes';
120
1 121 for n = 1:length(ax)
122 % Remove this handle from previous link object
3 123 hlink = getappdata(ax(n),KEY);
3 124 if any(ishandle(hlink))
125 removetarget(hlink,ax(n));
126 end
3 127 end
Other subfunctions in this file are not included in this listing.