How can we display a graph in axis of matlab GUI by pressing another button(say display)?
Ältere Kommentare anzeigen
How can we display a graph in axis of matlab GUI by pressing another button(say display)
Akzeptierte Antwort
Weitere Antworten (3)
Morteza
am 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
am 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;
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
