Hi.
I have written an algorithm that computes an array "b" for each ith iteration [i={1,2,3,4}], and I would like to save those arrays in a structure called "A".
How to save those arrays in the structure "A" where its elements are function of "i", i.e, A = {b1, b2,b3, b4} and to get b1 for instance, one would have to type A.b1.
Regards.

2 件のコメント

Stephen23
Stephen23 2019 年 5 月 16 日
編集済み: Stephen23 2019 年 5 月 16 日
Note that using a non-scalar structure would be more efficient than generating fieldnames.
Indexing is much faster and less buggy than messing around forcing meta-data (i.e. that index) into some fieldnames.
madhan ravi
madhan ravi 2019 年 5 月 16 日
Agree with Stephen.

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

 採用された回答

madhan ravi
madhan ravi 2019 年 5 月 15 日

0 投票

doc cell2struct

3 件のコメント

Abderrahmane DADA
Abderrahmane DADA 2019 年 5 月 16 日
Thanks Madhan for your input, but I would like to get is, at each iteration "i", the array should be saved directly and named after the index "i".
Ex: i=1 => b (n x n) is computed then savedin the strcture A as A.b1.
i=2 => b (n x n) is computed then savedin the strcture A as A.b2
You now what I mean now?
madhan ravi
madhan ravi 2019 年 5 月 16 日
編集済み: madhan ravi 2019 年 5 月 16 日
A=struct; % an example
for k=1:5
A.(sprintf('b%d',k))=rand(5);
end
Abderrahmane DADA
Abderrahmane DADA 2019 年 5 月 16 日
Thanks a lot Madhan.
That's exactly what I was looking for.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStructures についてさらに検索

製品

リリース

R2017a

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by