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