Diff for "GrandMean" - Meg Wiki
location: Diff for "GrandMean"
Differences between revisions 2 and 3
Revision 2 as of 2009-03-16 19:56:01
Size: 1787
Editor: YaaraErez
Comment:
Revision 3 as of 2009-03-16 19:56:31
Size: 1741
Editor: YaaraErez
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Averaging Fiff-files =
== Averaging Fiff-files ==
Line 5: Line 4:
-------------------------------------- ----------
Line 13: Line 12:
Line 15: Line 13:
Line 20: Line 17:
Line 26: Line 22:
Line 33: Line 28:

Line 46: Line 39:
Line 48: Line 40:
Line 50: Line 41:

Averaging Fiff-files

Simple Matlab script for averaging of Fiff-files. It assumes that all data files have identical data parameters (e.g. after interpolation).


% Compute the grand-mean for a list of Fiff-files in cell array "files{}"
% The string "file_out" specifies the file name for output
% The first file of the list will be used as a template for Fiff-output
% This obviously assumes that all files have identical parameters (e.g. are
% interpolated to a standard sensor array)
% OH, March 2009
addpath /opt/mne/matlab/toolbox/;   % fiff read/write tools
if exist('file_out')~=1,    % if not output file specified: write to current working directory
    cwd = pwd;
    file_out = fullfile( cwd, 'GrandMean.fif' );
end;
if exist('files')~=1,   % you can specify a list of files here (e.g. on-line averages for all subjects in your study)
    files = {'/fullpath/file4subj1.fif', ...
             '/fullpath/file4subj2.fif', ...
             '/fullpath/file4subj3.fif'};
end;
fid = fopen(file_out, 'a');
if fid==-1,
    fprintf(1, 'Cannot access output file %s\n', file_out);
    return;
end;
fclose(fid);
nr_files = length(files);
epoch_gm = [0];
for f = 1:nr_files, % read all files and average all that might be relevant
    fprintf(1, '%s\n', files{f});
    data = fiff_read_evoked(files{f});
    if f==1,
        data_templ = data;   % first data set will be used as template for output
    end;
    epoch_gm = epoch_gm + data.evoked.epochs;   % average MEG data epoch
end;
epoch_gm = epoch_gm/nr_files;
data_templ.evoked.epoch = epoch_gm; % insert averaged data into template structure
fiff_write_evoked(file_out, data_templ);  % Write average
% The end of this

CbuMeg: GrandMean (last edited 2013-03-08 10:02:26 by localhost)