fiff2nc conversion

Hi all,

My question concerns conversion from
fif-file to nc-file format. I am newbie in MEG data analysis. I made some
python scripts for reading and manipulating data from nc-file format.
I now nothing about data structure in fif files, but I would like to extract
data from them to make the same calculations.

Please give me some suggestions how to do that.

Lavoslav ?aklovi?
Department of Mathematics
University of Zagreb

hi Lavoslav,

you have netcdf support in python as you know.

to get the raw data read : http://martinos.org/mne/stable/python_tutorial.html

this line is what you look for:

data, times = raw[:, start:stop]

then data is a numpy array you can store in .nc

note that by doing this you loose all the measurement info.

HTH
A