Skip to content

Commit e2d2dd0

Browse files
authored
Solve issue about calling the wrong mask function
1 parent 8945538 commit e2d2dd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mems_fmri_run.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111

112112
case 4 %T2* weigghted (wi(t)=TEi * exp(-TEi/T2*(t)),sum(TEi * exp(-TEi/T2*(t))))
113113

114-
mask = my_spmbatch_mask(tefuncdat(:,:,:,:,1));
114+
mask = MEHB_mask(tefuncdat(:,:,:,:,1));
115115
mask_ind = find(mask>0);
116116

117117
%based on https://github.com/jsheunis/fMRwhy/tree/master
@@ -168,7 +168,7 @@
168168

169169
case 5 %T2* mapping
170170

171-
mask = my_spmbatch_mask(tefuncdat(:,:,:,:,1));
171+
mask = MEHB_mask(tefuncdat(:,:,:,:,1));
172172
mask_ind = find(mask>0);
173173

174174
%based on https://github.com/jsheunis/fMRwhy/tree/master
@@ -225,4 +225,4 @@
225225
Vout = MEHB_write_vol_4d(Vout,funcdat(:,:,:,ti));
226226

227227
out(ti) = {Vout.fname};
228-
end
228+
end

0 commit comments

Comments
 (0)