Save arrays in a structure
29 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
madhan ravi
2019-5-15
doc cell2struct
3 个评论
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!