How to store structure data into an array in loop?
2 次查看(过去 30 天)
显示 更早的评论
I have a structure with many fields of different length.I want to store this structure data into an array in a loop.How to solve this issue.
0 个评论
回答(1 个)
Matt J
2013-5-28
As in the following example
>> s.a=1; s.b=[2 3]; %A struct
a: 1
b: [2 3]
>> C=struct2cell(s); [C{:}]
ans =
1 2 3
2 个评论
Loretta Laughrey
2018-6-21
编辑:Loretta Laughrey
2018-6-21
What if I want an array of structures so that:
s(1) = struct(1,[2,3])
s(2) = struct(4,[5,6])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!