This is a static copy of a profile report

Home

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)

Function NameFunction TypeCalls
@timer\private\deleteAsyncM-function2
timer.deleteM-function2
timer.stopM-function2
timer.startM-function2
@timer\private\getSettableValuesM-function2
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
18
out = builtin('length', obj.jo...
100 s0%
17
try
100 s0%
Other lines & overhead  0 s0%
Totals  0.000 s0% 
Children (called functions)
No children
M-Lint results
No M-Lint messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in file25
Non-code lines (comments, blank lines)20
Code lines (lines that can run)5
Code lines that did run2
Code lines that did not run3
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