This is a static copy of a profile reportHome
isunix (5 calls, 0.000 sec)
Generated 15-Mar-2007 12:01:42 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\matlab\general\isunix.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Function Name | Function Type | Calls |
menu | M-function | 5 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
11 | result = ~strncmp(computer,'PC... | 5 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 0% | |
Children (called functions)
No childrenM-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 11 |
Non-code lines (comments, blank lines) | 10 |
Code lines (lines that can run) | 1 |
Code lines that did run | 1 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
1 function result = isunix()
2 %ISUNIX True for the UNIX version of MATLAB.
3 % ISUNIX returns 1 for UNIX versions of MATLAB and 0 otherwise.
4 %
5 % See also COMPUTER, ISPC.
6
7 % Copyright 1984-2004 The MathWorks, Inc.
8 % $Revision: 1.13.4.2 $ $Date: 2004/03/17 20:05:19 $
9
10 % The only non-Unix platform is the PC
5 11 result = ~strncmp(computer,'PC',2);