フィルターのクリア

I have to concatenate 6 .mat eeg files

7 ビュー (過去 30 日間)
Harshini Gangapuram
Harshini Gangapuram 2019 年 3 月 24 日
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.

採用された回答

Walter Roberson
Walter Roberson 2019 年 3 月 24 日
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 件のコメント
Walter Roberson
Walter Roberson 2019 年 3 月 24 日
save('Concatenate.mat', 'data')
or
save Concatenate.mat data
Harshini Gangapuram
Harshini Gangapuram 2019 年 3 月 24 日
Got it. Thank you!!!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBiomedical Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by