Skip to content

Commit 9df1339

Browse files
committed
DEFAULT: v_settings, tol, del_settings, inu_reg
1 parent d42f7a0 commit 9df1339

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spm_CTseg.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@
8585
if nargin < 6, skullstrip = false; end
8686
if nargin < 7, vox = NaN; end
8787
if nargin < 8
88-
v_settings = [0.00001 0 0.4 0.1 0.4] * 2;
88+
v_settings = [0.0001 0 0.4 0.1 0.4] * 2;
8989
elseif numel(v_settings) == 1
90-
v_settings = [0.00001 0 0.4 0.1 0.4] .* v_settings;
90+
v_settings = [0.0001 0 0.4 0.1 0.4] .* v_settings;
9191
end
92-
if nargin < 9, tol = 0.5*0.001; end
92+
if nargin < 9, tol = 0.001; end
9393

9494
% check MATLAB path
9595
%--------------------------------------------------------------------------
@@ -192,13 +192,13 @@
192192
run.v_settings = v_settings;
193193
run.tol = tol;
194194
run.aff = 'Aff(3)';
195-
run.del_settings = 1e3;
195+
run.del_settings = 1;
196196
% image
197197
run.gmm.pr.file = {pth_int};
198198
run.gmm.pr.hyperpriors = [];
199199
run.gmm.chan.images = {Nii(1).dat.fname};
200200
run.gmm.chan.modality = 2;
201-
run.gmm.chan.inu.inu_reg = 1e6;
201+
run.gmm.chan.inu.inu_reg = 1e7;
202202
% output settings
203203
out = struct;
204204
out.result = {fullfile(run.odir{1},['mb_fit_' run.onam '.mat'])};

0 commit comments

Comments
 (0)