This is a static copy of a profile reportHome
filesep (8 calls, 0.000 sec)
Generated 15-Mar-2007 12:02:09 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\iofun\filesep.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Function Name | Function Type | Calls |
fileparts | M-function | 8 |
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
13 | f = '\'; | 8 | 0.000 s | 100.0% |  |
12 | if strncmp(computer,'PC',2) | 8 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 100% | |
Children (called functions)
No childrenM-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 16 |
Non-code lines (comments, blank lines) | 11 |
Code lines (lines that can run) | 5 |
Code lines that did run | 2 |
Code lines that did not run | 3 |
Coverage (did run/can run) | 40.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 % $Revision: 1.17.4.2 $ $Date: 2004/04/10 23:29:24 $
11
8 12 if strncmp(computer,'PC',2)
< 0.01 8 13 f = '\';
14 else % isunix
15 f = '/';
16 end