forked from NISOx-BDI/SwE-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swe_cfg_batch.m
24 lines (20 loc) · 885 Bytes
/
swe_cfg_batch.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
function swe = swe_cfg_batch
% This function builds the whole tree for the various tools and their GUI.
% =========================================================================
% FORMAT swe = swe_cfg_batch
% =========================================================================
% Written by Bryan Guillaume
% Version Info: $Format:%ci$ $Format:%h$
toolboxDir = spm_str_manip(mfilename('fullpath'), 'h');
addpath(toolboxDir);
addpath(fullfile(toolboxDir, 'test'));
swe = cfg_choice;
swe.tag = 'swe';
swe.name = 'SwE';
swe.help = {[...
'This is the batch interface for SwE, i.e. Sandwich Estimator '...
'Method for Neuroimaging Longitudinal Data Analysis.']
}';
swe.values = {swe_config_smodel swe_config_rmodel swe_config_results};
%----------------------------------------------------------------------
end