This is a static copy of a profile report

Home

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

Parents (calling functions)

Function NameFunction TypeCalls
hhsave_VFI_3OCfunction1
hhsave_util_3OCfunction1
OC3function1
optiklfunction1
con_klfunction1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
86
path(p, mp);
50.500 s97.9%
82
mp = matlabpath;
50.006 s1.2%
64
p = catdirs(mfilename, varargi...
50.003 s0.5%
35
[varargin{:}] = convertStrings...
50.001 s0.1%
69
elseif ~isempty(strfind(p, cha...
50.000 s0.1%
All other lines  0.001 s0.2%
Totals  0.511 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
pathfunction50.499 s97.7%
general/private/catdirsfunction50.002 s0.3%
Self time (built-ins, overhead, etc.)  0.010 s1.9%
Totals  0.511 s100% 
Code Analyzer results
Line numberMessage
49Extra semicolon is unnecessary in END statement before newline.
52Extra semicolon is unnecessary in END statement before newline.
69For readability, use 'contains(str1, str2)' instead of '~isempty(strfind(str1, str2))'.
Coverage results
Show coverage for parent directory
Total lines in function87
Non-code lines (comments, blank lines)44
Code lines (lines that can run)43
Code lines that did run21
Code lines that did not run22
Coverage (did run/can run)48.84 %
Function listing
time 
Calls 
 line
   1 
function oldpath = addpath(varargin)
   2 
%ADDPATH Add folder to search path.
   3 
%   ADDPATH FOLDERNAME prepends the specified folder to the current
   4 
%   matlabpath.  Surround FOLDERNAME in quotes if the name contains a
   5 
%   space.  If FOLDERNAME is a set of multiple folders separated by path
   6 
%   separators, then each of the specified folders will be added.
   7 
%
   8 
%   ADDPATH FOLDERNAME1 FOLDERNAME2 FOLDERNAME3 ...  prepends all the 
   9 
%   specified folders to the path.
  10 
%
  11 
%   ADDPATH ... -END    appends the specified folders.
  12 
%   ADDPATH ... -BEGIN  prepends the specified folders.
  13 
%   ADDPATH ... -FROZEN disables folder change detection for folders
  14 
%                       being added.
  15 
%
  16 
%   Use the functional form of ADDPATH, such as 
  17 
%   ADDPATH('folder1','folder2',...), when the folder specification is 
  18 
%   a variable or string.
  19 
%
  20 
%   P = ADDPATH(...) returns the path prior to adding the specified paths.
  21 
%
  22 
%   Examples
  23 
%       addpath c:\matlab\work
  24 
%       addpath /home/user/matlab
  25 
%       addpath /home/user/matlab:/home/user/matlab/test:
  26 
%       addpath /home/user/matlab /home/user/matlab/test
  27 
%
  28 
%   See also RMPATH, PATHTOOL, PATH, SAVEPATH, USERPATH, GENPATH, REHASH.
  29 

  30 
%   Copyright 1984-2017 The MathWorks, Inc.
  31 

  32 
% Number of  input arguments
< 0.001 
      5 
  33
n = nargin; 
< 0.001 
      5 
  34
narginchk(1,Inf); 
< 0.001 
      5 
  35
[varargin{:}] = convertStringsToChars(varargin{:}); 
  36 

< 0.001 
      5 
  37
if nargout>0 
  38 
    oldpath = path;
< 0.001 
      5 
  39
end 
  40 

< 0.001 
      5 
  41
append = -1; 
< 0.001 
      5 
  42
freeze = 0; 
< 0.001 
      5 
  43
args = varargin; 
  44 

< 0.001 
      5 
  45
while (n > 1)    
  46 
    last = args{n};
  47 
    % Append or prepend to the existing path
  48 
    if isequal(last,1) || strcmpi(last,'-end')
  49 
        if (append < 0), append = 1; end; 
  50 
        n = n - 1;
  51 
    elseif isequal(last,0) || strcmpi(last,'-begin')
  52 
        if (append < 0), append = 0; end;
  53 
        n = n - 1;
  54 
    elseif strcmpi(last,'-frozen') 
  55 
        freeze = 1;
  56 
        n = n - 1;
  57 
    else
  58 
        break;
  59 
    end
  60 
end
< 0.001 
      5 
  61
if (append < 0), append = 0; end 
  62 

  63 
% Check, trim, and concatenate the input strings
  0.003 
      5 
  64
p = catdirs(mfilename, varargin{1:n}); 
  65 

  66 
% If p is empty then return
< 0.001 
      5 
  67
if isempty(p) 
  68 
    return;
< 0.001 
      5 
  69
elseif ~isempty(strfind(p, char(0))) 
  70 
    error(message('MATLAB:FileManip:NullCharacterInName'));
< 0.001 
      5 
  71
end 
  72 

  73 
% See whether frozen is desired, where the state is not already set frozen
< 0.001 
      5 
  74
if freeze 
  75 
    paths = strsplit(p,pathsep());
  76 
    for n = 1:size(paths,2)-1
  77 
        feature('DirectoryFreeze',paths{n});
  78 
    end
< 0.001 
      5 
  79
end 
  80 

  81 
% Append or prepend the new path
  0.006 
      5 
  82
mp = matlabpath; 
< 0.001 
      5 
  83
if append 
  84 
    path(mp, p);
< 0.001 
      5 
  85
else 
  0.500 
      5 
  86
    path(p, mp); 
< 0.001 
      5 
  87
end     

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