function pushbutton1_Callback(hObject, eventdata, handles)
조회 수: 9 (최근 30일)
이전 댓글 표시
function pushbutton1_Callback(hObject, eventdata, handles)
handles.metricdata.a=1;
function pushbutton2_Callback(hObject, eventdata, handles)
b=handles.metricdata.a;
if(b~=1)
msgbox('ok');
end
if(b==1)
msgbox('false');
end
in above code, if i don't press pushbutton1 and i press pushbutton2 then message 'ok' should display and if i press pushbutton1 and i press pushbutton2 then message 'false' should display.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 3월 3일
편집: Azzi Abdelmalek
2013년 3월 3일
In function pushbutton1_Callback you should update your handles
handles.metricdata.a=1;
guidata(hObject,handles)
댓글 수: 5
Azzi Abdelmalek
2013년 3월 3일
편집: Azzi Abdelmalek
2013년 3월 3일
In your yourfilename_OpeningFcn
handles.metricdata.a=0;
guidata(hObject,handles)
In
function pushbutton1_Callback(hObject, eventdata, handles)
handles.metricdata.a=1;
guidata(hObject,handles)
In
function pushbutton2_Callback(hObject, eventdata, handles)
b=handles.metricdata.a;
if(b~=1)
msgbox('ok');
end
if(b==1)
msgbox('false');
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!