This is a static copy of a profile report

Home

isdir (1 call, 0.000 sec)
Generated 05-Nov-2014 07:53:56 using cpu time.
function in file /usr1/opt/matlab/7.13/toolbox/matlab/general/isdir.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
img2slmlfunction1
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
11
result = exist(dirpath,'dir') ...
10 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in function11
Non-code lines (comments, blank lines)10
Code lines (lines that can run)1
Code lines that did run1
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
   time   calls  line
1 function result = isdir(dirpath)
2 %ISDIR True if argument is a directory.
3 % ISDIR(DIR) returns a 1 if DIR is a directory and 0 otherwise.
4 %
5 % See also FINFO, MKDIR.
6
7 % P. Barnard 1-10-95
8 % Copyright 1984-2004 The MathWorks, Inc.
9 % $Revision: 1.20.4.1 $ $Date: 2004/03/17 20:05:16 $
10
1 11 result = exist(dirpath,'dir') == 7;