フィルターのクリア

Concatenating structure array with matrix

1 回表示 (過去 30 日間)
Alexandre
Alexandre 2014 年 3 月 13 日
回答済み: Sarthak 2023 年 2 月 20 日
Hi you all. How can i concatenate this files? Each one has structure array and a matrix with values.
  1 件のコメント
dpb
dpb 2014 年 3 月 13 日
Directly you can't. You'll need to create a new data storage scheme to handle the various types of data. Perhaps add the new array to the previous structure?

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

回答 (1 件)

Sarthak
Sarthak 2023 年 2 月 20 日
Hi,
As far as I have understood the question, you want to concatenate two files which contain array and matrix.
You can use ‘cat’ function for the same.
Please refer to the pseudo code below:
struct_concat = [];
for i = 1:numel(field_names) %field_names are the name of the fields in the structure
field = field_names{i};
struct_concat.(field) = [struct1.(field); struct2.(field)];
end

カテゴリ

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