Button push status GUI

조회 수: 3 (최근 30일)
Dominik Maly
Dominik Maly 2019년 11월 29일
답변: Navya Seelam 2019년 12월 3일
Hey,
Is there any possibility to change btn1 value or some sort of it's status when it's pushed?
For example:
I've got 2 pushbuttons btn1 and btn2 in my GUI. When I click btn1 the value/flag/status of itself changes autommaticaly to another value(maybe true/1) so i can use it in my code to do some operations.
Is there any option to do it? Except the global values

채택된 답변

Navya Seelam
Navya Seelam 2019년 12월 3일
Hi,
You can try this
function pushbutton1_Callback(hObject, eventdata, handles)
% operation 1 here
guidata(hObject, handles);
function pushbutton2_Callback(hObject, eventdata, handles)
% operation 2 here
guidata(hObject, handles);
Operation 1 is performed only on click of pushbutton1 and Operation 2 is performed only on click of pushbutton2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by