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   | 
 
  | 
  0.015   |     966   |   11  | if strncmp(computer,'PC',2) 
   | 
 |  |   12   |   p = ';';
   | 
< 0.001   |     966   |   13  | else % isunix 
   | 
< 0.001   |     966   |   14  |   p = ':'; 
   | 
  0.001   |     966   |   15  | end 
   | 
Other subfunctions in this file are not included in this listing.