setenv('SUBJECTS_DIR','/home/stone-ext4/generic/Dropbox/nsddata/freesurfer');Here's the approach:1 2 3 4 5 <-- index of fieldmapFRR ..moved.. FRRFRRRRFRRRRF <-- data acquisition11 (interpolation) <-- strategyAnd then in the script, you'll want to use:% what are the time values to associate with the fieldmaps?% if [], default to 1:N where N is the number of fieldmaps.% *** EDIT ME ***fieldmaptimes = [1 3 5 9 13]; % t=1, t=3, etc.% what fieldmap should be used for each EPI run? ([] indicates default behavior, which is to attempt% to match fieldmaps to EPI runs 1-to-1, or if there is only one fieldmap, apply that fieldmap% to all EPI runs, or if there is one more fieldmap than EPI runs, interpolate each successive% pair of fieldmaps; see preprocessfmri.m for details.)%epifieldmapasst = {1 [1 2] [2 3] 3}; %%[splitmatrix([1:12; 2:13]',1) {4 4 4 4}];%epifieldmapasst = {1 1 [1 2] [2 3] [3 4] [4 5] [5 6] [6 7]};% *** EDIT ME ***epifieldmapasst = splitmatrix([1:12; 2:13]',1);epifieldmapasst{1} = 1; % use fieldmap index 1 for run 1epifieldmapasst{2} = 1; % use fieldmap index 1 for run 2% for run 3, use time interpolation between t=3 and t=4, and so on