sccn / bva-io

Routines for loading and saving data files in Brain Vision Data Exchange format (export and import of Brain Vision Analyzer MATLAB files developed by Arnaud Delorme)
23 stars 11 forks source link

An attempt to import data exported using BVA-IO to FASST (SPM8 plugin) #8

Open arnodelorme opened 4 years ago

arnodelorme commented 4 years ago

I'm not sure how many users would be interested in this specific topic, but if there is ever someone interested in exporting EEGLAB data to FASST(SPM8 plugin) to test its constraint ICA, I want to raise a caution that EEGLAB-exported BV format data loaded by crc-eeg_rdata is interchanged with their rows and colums! So s/he should do something like this:

data = reshape(data, [size(data,2) size(data,1)]);

I'm not sure if this could cause a problem in any other places... for example, compatibility with Vision Analyzer (which I can't test since I don't have it now).

Makoto