How can we display a graph in axis of matlab GUI by pressing another button(say display)?
Show older comments
How can we display a graph in axis of matlab GUI by pressing another button(say display)
Accepted Answer
More Answers (3)
Morteza
on 20 Aug 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
on 20 Aug 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
on 20 Aug 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!