This is a static copy of a profile report

Home

mdbfileonpath>areFilenamesEqual (2 calls, 0.000 sec)
Generated 14-Nov-2016 07:47:03 using cpu time.
subfunction in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/codetools/mdbfileonpath.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
mdbfileonpath>checkIfShadowednested function2
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
196
end
20 s0%
192
end
20 s0%
191
namesAreEqual = isequal(name1,...
20 s0%
190
else
20 s0%
188
if ispc
20 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
ispcfunction20 s0%
Self time (built-ins, overhead, etc.)  0 s0%
Totals  0 s0% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function11
Non-code lines (comments, blank lines)1
Code lines (lines that can run)10
Code lines that did run6
Code lines that did not run4
Coverage (did run/can run)60.00 %
Function listing
time 
calls 
 line
 186 
function namesAreEqual = areFilenamesEqual(name1, name2)
      2 
 187 
    try 
      2 
 188 
        if ispc 
 189 
            namesAreEqual = isequal(lower(name1), lower(name2));
      2 
 190 
        else 
      2 
 191 
            namesAreEqual = isequal(name1, name2); 
      2 
 192 
        end 
 193 
    catch
 194 
        namesAreEqual = false;
 195 
    end
      2 
 196 
end 

Other subfunctions in this file are not included in this listing.