App Designer - increment component

4 次查看(过去 30 天)
Hello,
I try to increment the name of a component in app designer, in order to create a loop,
hereafter an example:
for i=1:8
app.Lamp.Color_i = [0 0 0]
end
Of course, the above example does not work, I tryed several type of concantenate functions, and also eval function, but I did not succed.
Thanks in advance for any help !

采纳的回答

Monisha Nalluru
Monisha Nalluru 2021-4-12
From my understanding, you want to access the uilamp present in the app using app designer.
If uilamps are named as Lamp1, Lamp2, Lamp3 and so on.
Then you can access them using the following statement
for i=1:8
app.("Lamp"+i).Color = "red";
end
Hope this helps!
  1 个评论
Marc Servagent
Marc Servagent 2021-4-13
Thanks, Monisha, for your help, I did not expect to be as simple as that ...!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by