This is a static copy of a profile report

Home

@timer\private\isJavaTimer (70 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\private\isJavaTimer.m
[Copy to new window for comparing multiple runs]

Parents (calling functions)

Function NameFunction TypeCalls
timer.stopM-function2
timer.timerM-function31
timer.startM-function2
@timer\private\getSettableValuesM-function2
timer.isvalidM-function33
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
11
out = false;
700.000 s100.0%
18
if (size(out) ~= size(obj))
700 s0%
14
end
700 s0%
13
out(lcv) = isa(obj(lcv),'javah...
700 s0%
12
for lcv=1:length(obj)
700 s0%
Other lines & overhead  0 s0%
Totals  0.000 s100% 
Children (called functions)
No children
M-Lint results
No M-Lint messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in file20
Non-code lines (comments, blank lines)13
Code lines (lines that can run)7
Code lines that did run5
Code lines that did not run2
Coverage (did run/can run)71.43 %
Function listing
   time   calls  line
1 function out = isJavaTimer(obj)
2 %ISJAVATIMER Returns logical indicating if object is a Java timer
3 %
4 % ISJAVATIMER(OBJ) returns a logical indicating if OBJ is a
5 % instance of the java timer object.
6
7 % RDD 1-18-2002
8 % Copyright 2001-2002 The MathWorks, Inc.
9 % $Revision: 1.3 $ $Date: 2002/03/14 14:35:16 $
10
< 0.01 70 11 out = false;
70 12 for lcv=1:length(obj)
70 13 out(lcv) = isa(obj(lcv),'javahandle.com.mathworks.timer.TimerTask');
70 14 end
15
16 % Reshape the out variable to be the same shape as the input object.
17 % This is needed is obj is a column vector.
70 18 if (size(out) ~= size(obj))
19 out = out';
20 end