This is a static copy of a profile report

Home

isunix (12 calls, 0.010 sec)
Generated 14-Nov-2016 07:47:17 using cpu time.
function in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/general/isunix.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
graphics/private/namefunction6
graphics/private/name>fixTildesubfunction6
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
10
result = ~strncmp(computer,'PC...
120.010 s100.0%
All other lines  0 s0%
Totals  0.010 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function10
Non-code lines (comments, blank lines)9
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 

   9 
%  The only non-Unix platform is the PC
  0.01 
     12 
  10 
result = ~strncmp(computer,'PC',2);