필터 지우기
필터 지우기

How can I use a Push Button callback function to call Radio Button Group's SelectionChangeFcn?

조회 수: 1 (최근 30일)
My codes are wrong. How can I make it work by modifying below codes?
function pushbutton1_Callback(hObject, eventdata, handles)
% Add & Save into the system
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a futurer version of MATLAB
% handles structure with handles and user data (see GUIDATA)
switch get(get(uipanel1_SelectionChangeFcn,'SelectedObject'),'Tag')
case 'RadioButton 1', Output = 'A';
case 'RadioButton 2', Output = 'B';
case 'RadioButton 3', Output = 'C';
case 'RadioButton 4', Output = 'D';
otherwise, Output = '';
end

채택된 답변

Zheng
Zheng 2013년 2월 6일
just change uipanel1_SelectionChangeFcn to handles.uipanel1

추가 답변 (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