This is a static copy of a profile report

Home

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)

Function NameFunction TypeCalls
importdata>isvaliddatasubfunction4
importdata>maxNotDatasubfunction116
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
653
end
1200 s0%
652
status = isempty(c) &&...
1200 s0%
651
[~,b,c] = sscanf(fileString, '...
1200 s0%
650
else
1200 s0%
648
if isempty(regexp(fileString, ...
1200 s0%
All other lines  0.011 s100.0%
Totals  0.011 s100% 
Children (called functions)
No children
Code Analyzer results
Line numberMessage
Coverage results
[ Show coverage for parent directory ]
Total lines in function8
Non-code lines (comments, blank lines)2
Code lines (lines that can run)6
Code lines that did run5
Code lines that did not run1
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.