This is a static copy of a profile reportHome
importdata>isdata (120 calls, 0.011 sec)
Generated 05-Aug-2011 13:01:23 using cpu time.
subfunction in file /usr/local/MATLAB/R2011a/toolbox/matlab/iofun/importdata.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 |
653 | end | 120 | 0 s | 0% |  |
652 | status = isempty(c) &&... | 120 | 0 s | 0% |  |
651 | [~,b,c] = sscanf(fileString, '... | 120 | 0 s | 0% |  |
650 | else | 120 | 0 s | 0% |  |
648 | if isempty(regexp(fileString, ... | 120 | 0 s | 0% |  |
All other lines | | | 0.011 s | 100.0% |  |
Totals | | | 0.011 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 8 |
Non-code lines (comments, blank lines) | 2 |
Code lines (lines that can run) | 6 |
Code lines that did run | 5 |
Code lines that did not run | 1 |
Coverage (did run/can run) | 83.33 % |
Function listing
time calls line
646 function status = isdata(fileString)
647 %ISDATA true if string can be shoved into a number or if it's allwhite
120 648 if isempty(regexp(fileString, '\S', 'once'))
649 status = 1;
120 650 else
120 651 [~,b,c] = sscanf(fileString, '%g');
120 652 status = isempty(c) && b == 1;
120 653 end
Other subfunctions in this file are not included in this listing.