This is a static copy of a profile report

Home

isunix (Calls: 24, Time: 0.001 s)
Generated 16-Jul-2020 17:09:16 using performance time.
function in file /Applications/MATLAB_R2020a.app/toolbox/matlab/general/isunix.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
namefunction12
name>fixTildesubfunction12
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
11
if isempty(unixRes)
240.000 s23.2%
10
persistent unixRes;
240.000 s21.2%
14
result = unixRes;
240.000 s19.8%
13
end
240.000 s0.5%
All other lines  0.000 s35.4%
Totals  0.001 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function14
Non-code lines (comments, blank lines)9
Code lines (lines that can run)5
Code lines that did run4
Code lines that did not run1
Coverage (did run/can run)80.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-2018 The MathWorks, Inc.
   8 

   9 
%  The only non-Unix platform is the PC
< 0.001 
     24 
  10
persistent unixRes; 
< 0.001 
     24 
  11
if isempty(unixRes) 
  12 
    unixRes = ~ispc;
< 0.001 
     24 
  13
end 
< 0.001 
     24 
  14
result = unixRes; 

Other subfunctions in this file are not included in this listing.