How to store structure data into an array in loop?
조회 수: 3 (최근 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!