This is a static copy of a profile reportHome
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 Name | Function Type | Calls |
img2slml | function | 1 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
11 | result = exist(dirpath,'dir') ... | 1 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 11 |
Non-code lines (comments, blank lines) | 10 |
Code lines (lines that can run) | 1 |
Code lines that did run | 1 |
Code lines that did not run | 0 |
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;