forked from hMRI-group/hMRI-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tbx_scfg_hmri_QUIQI_check.m
41 lines (37 loc) · 1.49 KB
/
tbx_scfg_hmri_QUIQI_check.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
30
31
32
33
34
35
36
37
38
39
40
41
function quiqi_check=tbx_scfg_hmri_QUIQI_check
%
% PURPOSE: Plot Residuals of the estimated model with respect to the Motion
% Degradation Index to evaluate the efficiency of the weighting
%
%
% METHODS: Spatial variance of the residuals of each subject is plotted
% with respect to their corresponfing MDI value
%
%_______________________________________________________________________
% Nadege Corbin
% 2021.03.30
% Centre de Resonance Magnetique des Systemes Biologiques, Bordeaux, France
% ======================================================================
% ---------------------------------------------------------------------
% SPM.mat file
% ---------------------------------------------------------------------
spm_mat_file = cfg_files;
spm_mat_file.tag = 'spm_mat_file';
spm_mat_file.name = 'SPM.mat file';
spm_mat_file.help = {'Select the SPM.mat file containing the design of the model.'};
spm_mat_file.ufilter = '^SPM.mat$';
spm_mat_file.num = [1 1];
pow = cfg_entry;
pow.tag = 'power';
pow.name = 'Fit power ';
pow.val = {[4]};
pow.strtype = 'e';
pow.num = [1 1];
pow.help = {'Specify the power of the polynomial fit.'};
quiqi_check = cfg_exbranch;
quiqi_check.tag = 'quiqi_check';
quiqi_check.name = 'QUIQI CHECK';
quiqi_check.val = { spm_mat_file pow};
quiqi_check.help = {'Spatial variance of the residuals of each subject is plotted ',...
'with respect to their corresponfing MDI value'};
quiqi_check.prog = @hmri_quiqi_check;