This is a static copy of a profile report

Home

Function details for addpathThis is a static copy of a profile report

Home

addpath (Calls: 1, Time: 0.077 s)
Generated 19-Jun-2021 04:39:07 using performance time.
function in file /nfs/linux/matlab-2019b/toolbox/matlab/general/addpath.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
cnn_trainfunction1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
86
path(p, mp);
10.074 s95.9%
82
mp = matlabpath;
10.001 s1.6%
64
p = catdirs(mfilename, varargi...
10.001 s1.4%
35
[varargin{:}] = convertStrings...
10.000 s0.3%
48
if isequal(last,1) || strcmpi(...
10.000 s0.2%
All other lines  0.000 s0.5%
Totals  0.077 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
pathfunction10.074 s95.6%
general/private/catdirsfunction10.001 s1.0%
Self time (built-ins, overhead, etc.)  0.003 s3.4%
Totals  0.077 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 run27
Code lines that did not run16
Coverage (did run/can run)62.79 %
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 
      1 
  33
n = nargin; 
< 0.001 
      1 
  34
narginchk(1,Inf); 
< 0.001 
      1 
  35
[varargin{:}] = convertStringsToChars(varargin{:}); 
  36 

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

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

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

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

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

  73 
% See whether frozen is desired, where the state is not already set frozen
< 0.001 
      1 
  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 
      1 
  79
end 
  80 

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

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