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!
