How can we display a graph in axis of matlab GUI by pressing another button(say display)?
이전 댓글 표시
How can we display a graph in axis of matlab GUI by pressing another button(say display)
채택된 답변
추가 답변 (3개)
Morteza
2015년 8월 20일
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
2015년 8월 20일
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
2015년 8월 20일
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
