How to add values to structure array without loop
8 views (last 30 days)
Show older comments
Durga Lal Shrestha
on 8 Dec 2015
Commented: Somaye Hamedi Bazaz
on 24 Nov 2018
Consider the following loop:
values = [2 5 6 4 8 9 10 5 15 7]
for i=1:10
arr(i).myfield = values(i);
end
How can this be done without loop?
Thank you.
0 Comments
Accepted Answer
Walter Roberson
on 8 Dec 2015
T = struct('myfield', num2cell(values));
arr(1:length(T)) = T;
In the special case that arr does not already exist, it can be done with the one line
arr = struct('myfield', num2cell(values));
4 Comments
More Answers (0)
See Also
Categories
Find more on Structures 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!