forked from hMRI-group/hMRI-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbx_scfg_hmri_QUIQI.m
37 lines (34 loc) · 1.24 KB
/
tbx_scfg_hmri_QUIQI.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
function quiqi = tbx_scfg_hmri_QUIQI
%
% 1./
% PURPOSE: Compute dictionaries of covariance matrices from the motion
% degradation index.The dictionary will be used by spm_reml.m or
% spm_reml_sc.m to account for heteroscedasticity of the data.
% See " reference to the paper " for more details
%
%
% METHODS: SPM.mat created when designing the model is modified to add in
% SPM.xVi.Vi the dictionary of covariance matrices. %
%
% 2./
% 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
quiqi = cfg_choice;
quiqi.tag = 'quiqi';
quiqi.name = 'QUIQI';
quiqi.help = {'Compute dictionaries of covariance matrices from the motion',...
' degradation index. The dictionary will be used by spm_reml.m or',...
' spm_reml_sc.m to account for heteroscedasticity of the data.'
}';
quiqi.values = {tbx_scfg_hmri_QUIQI_build tbx_scfg_hmri_QUIQI_check};
end