This is a static copy of a profile reportHome
timer.length (10 calls, 0.000 sec)
Generated 15-Mar-2007 12:01:50 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\iofun\@timer\length.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 |
18 | out = builtin('length', obj.jo... | 10 | 0 s | 0% |  |
17 | try | 10 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 0% | |
Children (called functions)
No childrenM-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 25 |
Non-code lines (comments, blank lines) | 20 |
Code lines (lines that can run) | 5 |
Code lines that did run | 2 |
Code lines that did not run | 3 |
Coverage (did run/can run) | 40.00 % |
Function listing
time calls line
1 function out = length(obj)
2 %LENGTH Length of timer object array.
3 %
4 % LENGTH(OBJ) returns the length of timer object array,
5 % OBJ. It is equivalent to MAX(SIZE(OBJ)).
6 %
7 % See also TIMER/SIZE.
8 %
9
10 % RDD 1-8-2002
11 % Copyright 2001-2002 The MathWorks, Inc.
12 % $Revision: 1.1 $ $Date: 2002/02/19 19:55:38 $
13
14
15 % The jobject property of the object indicates the number of
16 % objects that are concatenated together.
10 17 try
10 18 out = builtin('length', obj.jobject);
19 catch
20 out = 1;
21 end
22
23
24
25