Dynamic call to structure elements

19 次查看(过去 30 天)
I intend to use a for loop to process iterative computation on different elements of a structure; my structure is made of:
  • MyStruct.Elmt1
  • MyStruct.Elmt2
  • MyStruct.Elmt3
  • ...
How can I dynamicaly call each element of my structure (incrementing the number : Elmt1, Elmt2,...) in order to use it in a for loop?
Thanks
  1 个评论
Stephen23
Stephen23 2020-7-8
移动:Stephen23 2023-12-8
You can trivially access the fields of a structure using this syntax, where F is the fieldname:
S.(F)
You could use sprintf to generate the fieldnames, e,g.:
idx = 1;
fnm = sprintf('Elmt%u',idx);
MyStruct.(fnm)
Note that your code would be simpler and more efficient if you used a non-scalar structure, e.g.:
S(1).Elmt = 1;
S(2).Emlt = 22;
S(3).Emlt = 333;
then you can trivially access any element of that structure array using basic, efficeint indexing:
idx = 1;
S(idx).Emlt

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-7-8
for K = 1 : 3
MyStruct.(sprintf('Elmt%d', K))
end
or
for K = 1 : 3
MyStruct.("Elmt"+K) %rely on string objects
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by