This is a static copy of a profile report

Home

filesep (364 calls, 0.000 sec)
Generated 04-Aug-2014 13:05:14 using cpu time.
function in file /share/apps/matlabr2014a/toolbox/matlab/iofun/filesep.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
Bottom_Gravity_Current_Setup6script1
fullfilefunction121
fullfile>addTrailingFileSepsubfunction121
fullfile>refinePathsubfunction121
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
15
end
3640 s0%
14
f = '/';
3640 s0%
13
else  % isunix
3640 s0%
11
if strncmp(computer,'PC',2)
3640 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 function15
Non-code lines (comments, blank lines)10
Code lines (lines that can run)5
Code lines that did run4
Code lines that did not run1
Coverage (did run/can run)80.00 %
Function listing
time 
calls 
 line
   1 
function f = filesep
   2 
%FILESEP Directory separator for this platform.
   3 
%   F = FILESEP returns the file separator character for this platform.
   4 
%   The file separator is the character that separates
   5 
%   directory names in filenames.
   6 
%
   7 
%   See also PATHSEP, FULLFILE.
   8 

   9 
%   Copyright 1984-2003 The MathWorks, Inc.
  10 

    364 
  11 
if strncmp(computer,'PC',2) 
  12 
    f = '\';
    364 
  13 
else  % isunix 
    364 
  14 
    f = '/'; 
    364 
  15 
end