-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAMICO_SetupWin.m
29 lines (26 loc) · 947 Bytes
/
AMICO_SetupWin.m
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
%
% Initialization for AMICO
%
% CBSN Tutorial
% 2016 Daisuke MATSUYOSHI
%
% Please replace 'username' with yours
global AMICO_code_path AMICO_data_path CAMINO_path CONFIG
global niiSIGNAL niiMASK
global KERNELS bMATRIX
% Path definition: adapt these to your needs
% ==========================================
AMICO_code_path = 'C:\Users\username\matlab\amico';
AMICO_data_path = 'C:\Users\username\matlab\AMICO_Data';
CAMINO_path = 'C:\Users\username\camino';
NODDI_path = 'C:\Users\username\matlab\NODDI_toolbox_v0.9';
SPAMS_path = 'C:\Users\username\matlab\spams';
if ~isdeployed
addpath( genpath(NODDI_path) )
addpath( fullfile(SPAMS_path,'build') )
addpath( fullfile(AMICO_code_path,'kernels') )
addpath( fullfile(AMICO_code_path,'models') )
addpath( fullfile(AMICO_code_path,'optimization') )
addpath( fullfile(AMICO_code_path,'other') )
addpath( fullfile(AMICO_code_path,'vendor','NIFTI') )
end