22 lines
463 B
Matlab
22 lines
463 B
Matlab
% Initialize Path
|
|
% #+NAME: m-init-path
|
|
|
|
%% Path for functions, data and scripts
|
|
addpath('./matlab/mat/'); % Path for data
|
|
addpath('./matlab/src/'); % Path for functions
|
|
addpath('./matlab/'); % Path for scripts
|
|
|
|
|
|
|
|
% #+NAME: m-init-path-tangle
|
|
|
|
%% Path for functions, data and scripts
|
|
addpath('./mat/'); % Path for data
|
|
addpath('./src/'); % Path for functions
|
|
|
|
% Initialize other elements
|
|
% #+NAME: m-init-other
|
|
|
|
%% Colors for the figures
|
|
colors = colororder;
|