フィルターのクリア

How to merge a set of struct files?

4 ビュー (過去 30 日間)
ELCIO S
ELCIO S 2019 年 1 月 24 日
コメント済み: ELCIO S 2019 年 1 月 25 日
Hi everyone. I have a lot of structs saved in .mat files. I need merge all of then in just one. How can I do it?
Let suppose, I have 4 .mat file, like in attached ones. Each of then are a 1x3 struct with 4 fields, like in figure below.
fig1.png
I need merge then to obtain a new one with 1 x 12 struct with 4 fields.
Can anyone help me?
Thank you.
  2 件のコメント
Stephen23
Stephen23 2019 年 1 月 24 日
Are the field names exactly the same in all of the .mat files?
Do all of the structure have exactly the same size?
ELCIO S
ELCIO S 2019 年 1 月 24 日
編集済み: ELCIO S 2019 年 1 月 24 日
@Stephen Cobeldick Yes, same field names and size.

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

採用された回答

TADA
TADA 2019 年 1 月 24 日
files = dir('data_*.mat'); % based on the names of the files you supplied
c = cell(1,numel(files));
for i = 1:numel(files)
filename = fullfile(files(i).folder, files(i).name);
c{i} = load(filename);
end
% get an array of the data structs
data = cell2mat(c);
% or you can unravel the data struct into an array of the data itself:
data1 = cell2mat(cellfun(@(a) a.data, c, 'UniformOutput', false));
  1 件のコメント
ELCIO S
ELCIO S 2019 年 1 月 25 日
Thank you. It works.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by