How can i index various objects using a variable in their name?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hugo
am 13 Mär. 2014
Kommentiert: Hugo
am 13 Mär. 2014
I don't know if the question makes sens as stated, but what i meant is this:
say i have 10 different edit boxes in my GUI, that I named edit_1 to edit-10 what i want is a way to call them without writing the same thing 10 times. I would like something like that for example:
for k=1:10 set(handles.edit_k,'visible', 'on'); end
is it possible?
thanks
0 Kommentare
Akzeptierte Antwort
W. Owen Brimijoin
am 13 Mär. 2014
You can dynamically refer to different edit boxes by enclosing the field name in parentheses and supplying the numerical argument. This ought to get the behaviour you are looking for:
for k = 1:10, set(handles.(['edit_',num2str(k)]),'Visible','on'); end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!