Azzera filtri
Azzera filtri

I have to concatenate 6 .mat eeg files

7 visualizzazioni (ultimi 30 giorni)
I have to concatenate six .mat files that contains EEG data. The data has 8 channels and different samples.
I want to concatenate the data column wise so that there are 8 rows for channels and the samples keep on adding column wise.

Risposta accettata

Walter Roberson
Walter Roberson il 24 Mar 2019
filenames = {'first.mat', 'second.mat', 'third.mat', 'fourth.mat', 'fifth.mat', 'sixth.mat'};
nfiles = length(filenames);
data_cell = cell(nfiles,1);
for K = 1 : nfiles
data_struct = load(filenames{K});
%we do not know the names of the variable the data is stored in.
%assume it is the first variable in the file.
fn = fieldnames(data_struct);
this_data = data_struct.(fn{1});
data_cell{K} = this_data;
end
%now put it all together into one matrix
data = vertcat(data_cell{:}) .';
  5 Commenti
Walter Roberson
Walter Roberson il 24 Mar 2019
save('Concatenate.mat', 'data')
or
save Concatenate.mat data
Harshini Gangapuram
Harshini Gangapuram il 24 Mar 2019
Got it. Thank you!!!!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Biomedical Signal Processing in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by