This is a static copy of a profile reportHome
timercb (31 calls, 0.109 sec)
Generated 15-Mar-2007 12:01:51 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\iofun\timercb.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 |
14 | timercb(t, varargin{2:end}); | 31 | 0.094 s | 85.7% |  |
12 | h = handle(varargin{1}); | 31 | 0.016 s | 14.3% |  |
13 | t = timer(h); | 31 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.109 s | 100% | |
Children (called functions)
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
timer.timercb | M-function | 31 | 0.094 s | 85.7% |  |
timer.timer | M-function | 31 | 0 s | 0% |  |
Self time (built-ins, overhead, etc.) | | | 0.016 s | 14.3% |  |
Totals | | | 0.109 s | 100% | |
M-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 15 |
Non-code lines (comments, blank lines) | 12 |
Code lines (lines that can run) | 3 |
Code lines that did run | 3 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
1 function timercb(varargin)
2 %TIMERCB Wrapper for timer object M-file callback.
3 %
4 % See also TIMER
5 %
6
7 % Copyright 2004 The MathWorks, Inc.
8 % $Revision: 1.1.6.1 $ $Date: 2004/10/27 23:53:50 $
9
10 %Create a timer object out of the JavaTimer, and then call the object
11 %timercb.
0.02 31 12 h = handle(varargin{1});
31 13 t = timer(h);
0.09 31 14 timercb(t, varargin{2:end});
15