This is a static copy of a profile report

Home

isunix (80 calls, 0.000 sec)
Generated 05-Aug-2011 13:03:34 using cpu time.
function in file /usr/local/MATLAB/R2011a/toolbox/matlab/general/isunix.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
graphics/private/namefunction40
graphics/private/name>fixTildesubfunction40
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
11
result = ~strncmp(computer,'PC...
800 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 function11
Non-code lines (comments, blank lines)10
Code lines (lines that can run)1
Code lines that did run1
Code lines that did not run0
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, ISMAC.
6
7 % Copyright 1984-2006 The MathWorks, Inc.
8 % $Revision: 1.13.4.3 $ $Date: 2006/09/12 16:53:50 $
9
10 % The only non-Unix platform is the PC
80 11 result = ~strncmp(computer,'PC',2);