How can I create multi dimensional dynamic structure array in loop?
2 views (last 30 days)
Show older comments
Azar Nejad
on 18 Aug 2018
Commented: Azar Nejad
on 18 Aug 2018
Hi all I want to have a structure like:
DataStruct.name(i)
name(i) include three items: Round, Trial and Paradigm
DataStruct.value(i)
value(i) include three itmes: LocX, LocY and LocZ
0 Comments
Accepted Answer
Walter Roberson
on 18 Aug 2018
DataStruct.name(i) = struct('Round', value_for_round, 'Trial', value_for_trial, 'Paradigm', value_for_paradigm);
And likewise for value(i) with fields LocX LocY and LocZ
More Answers (0)
See Also
Categories
Find more on Data Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!