This is a static copy of a profile report

Home

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

Parents (calling functions)

Function NameFunction TypeCalls
general/private/catdirsfunction2
general/private/parsedirsfunction4
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
15
end
60 s0%
14
p = ':';
60 s0%
13
else % isunix
60 s0%
11
if strncmp(computer,'PC',2)
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 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 p = pathsep
   2 
%PATHSEP Path separator for this platform.
   3 
%   F = PATHSEP returns the path separator character for this platform.
   4 
%   The path separator is the character that separates directories in
   5 
%   the MATLABPATH variable.
   6 
%
   7 
%   See also PATH, FILESEP, FULLFILE.
   8 

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

      6 
  11 
if strncmp(computer,'PC',2) 
  12 
  p = ';';
      6 
  13 
else % isunix 
      6 
  14 
  p = ':'; 
      6 
  15 
end