This is a static copy of a profile reportHome
workspacefunc>getAbstractValueSummaryJ (17 calls, 0.000 sec)
Generated 05-Aug-2011 13:01:07 using cpu time.
subfunction in file /usr/local/MATLAB/R2011a/toolbox/matlab/codetools/workspacefunc.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
342 | out = com.mathworks.widgets.sp... | 17 | 0 s | 0% |  |
337 | clazz = class(in); | 17 | 0 s | 0% |  |
336 | if ~isa(in, 'timeseries') || n... | 17 | 0 s | 0% |  |
330 | if ~isnumeric(s) || isscalar(s... | 17 | 0 s | 0% |  |
329 | s = size(in); | 17 | 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 | 16 |
Non-code lines (comments, blank lines) | 2 |
Code lines (lines that can run) | 14 |
Code lines that did run | 6 |
Code lines that did not run | 8 |
Coverage (did run/can run) | 42.86 % |
Function listing
time calls line
327 function out = getAbstractValueSummaryJ(in)
17 328 try
17 329 s = size(in);
17 330 if ~isnumeric(s) || isscalar(s)
331 s = builtin('size', in);
332 end
333 catch err %#ok<NASGU>
334 s = builtin('size', in);
335 end
17 336 if ~isa(in, 'timeseries') || numel(in)~=1
17 337 clazz = class(in);
338 else
339 clazz = [class(in.Data) ' ' class(in)];
340 end
341
17 342 out = com.mathworks.widgets.spreadsheet.data.ValueSummaryFactory.getInstance(clazz, s);
Other subfunctions in this file are not included in this listing.