-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAddPaths.m
More file actions
executable file
·33 lines (24 loc) · 1.12 KB
/
AddPaths.m
File metadata and controls
executable file
·33 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%% This function adds all the useful paths to the matlab environment for
% the application of total activation routines
function [] = AddPaths()
% Path towards the toolbox functions
addpath(fullfile('functions','00_Utilities'));
addpath(fullfile('functions','00_Preprocessing'));
addpath(genpath(fullfile('functions','01_TotalActivation')));
addpath(fullfile('functions','02_Thresholding'));
addpath(fullfile('functions','03_Clustering'));
addpath(fullfile('functions','04_Regression'));
addpath(fullfile('functions'));
% addpath(genpath(fullfile('functions')));
addpath(fullfile('input_scripts'));
% Path towards SPM12
addpath(fullfile('packages','spm12'));
% Path towards cbiNifti to read and write 4D nifti data
addpath(fullfile('packages','cbiNifti'));
% Path towards munkres function for Hungarian algorithm
addpath(fullfile('packages','munkres'));
% Path towards function to find knee points
addpath(fullfile('packages','knee_pt'));
% Path towards function to findgsp toolbox
addpath(genpath(fullfile('packages','gspbox')));
end