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 !
댓글 수: 0
채택된 답변
Monisha Nalluru
2021년 4월 12일
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!
추가 답변(0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!