I have to concatenate 6 .mat eeg files

3 Ansichten (letzte 30 Tage)
Harshini Gangapuram
Harshini Gangapuram am 24 Mär. 2019
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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Mär. 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 Kommentare
Walter Roberson
Walter Roberson am 24 Mär. 2019
save('Concatenate.mat', 'data')
or
save Concatenate.mat data
Harshini Gangapuram
Harshini Gangapuram am 24 Mär. 2019
Got it. Thank you!!!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Biomedical Signal Processing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by