


Run this file to set up MATLAB paths to all the sub-directories. Alternatively you can directly add L1_homotopy folder along with all the subfolders, using MATLAB menu as (File --> Set Path --> Add with subfolders -->...)


0001 % Run this file to set up MATLAB paths to all the sub-directories. 0002 % 0003 % Alternatively you can directly add L1_homotopy folder along with all the 0004 % subfolders, using MATLAB menu as 0005 % (File --> Set Path --> Add with subfolders -->...) 0006 0007 % file_name = mfilename('fullpath'); 0008 % dbs = dbstack; 0009 % 0010 % addpath(genpath(file_name(1:length(file_name)-length(dbs.name)))); 0011 0012 mname = mfilename; 0013 mpath = mfilename('fullpath'); 0014 mdir = mpath(1:end-length(mname)); 0015 cd(mdir); 0016 0017 addpath(genpath(mdir))