This is a static copy of a profile report

Home

isdir (6 calls, 0.000 sec)
Generated 14-Nov-2016 07:47:08 using cpu time.
function in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/general/isdir.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
mdbfileonpath>isPackageDirectorysubfunction3
mdbfileonpath>isFileInPackagesubfunction1
mdbfileonpath>isObjectsubfunction1
mdbfileonpath>isPrivatesubfunction1
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
10
result = exist(dirpath,'dir') ...
60 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 function10
Non-code lines (comments, blank lines)9
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 

      6 
  10 
result = exist(dirpath,'dir') == 7;