This is a static copy of a profile reportHome
@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)
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
11 | out = false; | 70 | 0.000 s | 100.0% |  |
18 | if (size(out) ~= size(obj)) | 70 | 0 s | 0% |  |
14 | end | 70 | 0 s | 0% |  |
13 | out(lcv) = isa(obj(lcv),'javah... | 70 | 0 s | 0% |  |
12 | for lcv=1:length(obj) | 70 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 100% | |
Children (called functions)
No childrenM-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 20 |
Non-code lines (comments, blank lines) | 13 |
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
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