GUI check state of radio button in another callback

조회 수: 8 (최근 30일)
Nicholas Wills
Nicholas Wills 2017년 11월 21일
댓글: Adaikan Kannappan 2021년 6월 18일
I have a push button callback, and a selection of radio buttons. Within the push button I want to be able to say
if radio1 selected
% code
else if radio 2 selected
% do
end
This would naturally have to update whenever the radio button selection was changed.
How would I do this?
  댓글 수: 1
Mubarak Mubarak MohamedSaeed
Mubarak Mubarak MohamedSaeed 2020년 4월 30일
편집: Mubarak Mubarak MohamedSaeed 2020년 5월 1일
Hi, I want to ask about how to use the Radio Button Group at App Designer....... I have tried but it did not work...

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2017년 11월 21일
편집: Jan 2017년 11월 21일
if handles.radio1.Value == 1
% code
elseif handles.radio2.Value == 1
% other code
end
Here I guess, that you work with GUIDE and that the radio buttons got the tags "radio1" and "radio2". You have to adjust this to your real names. If you do not know than, search in GUIDE or set a breakpoint in the callback. Then run the code and display the contents of the handles struct, when Matlab stops.
This would naturally have to update whenever the radio button
selection was changed.
What should be updated? The Value property is equivalent to the current setting automatically. Or do you mean, that the shown callback should be triggered, when the radio buttons are selected?
  댓글 수: 2
Nicholas Wills
Nicholas Wills 2017년 11월 22일
That works perfectly, thank you!
Adaikan Kannappan
Adaikan Kannappan 2021년 6월 18일
Thank you so much!~

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by