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!
