How can we display a graph in axis of matlab GUI by pressing another button(say display)?
Afficher commentaires plus anciens
How can we display a graph in axis of matlab GUI by pressing another button(say display)
Réponse acceptée
Plus de réponses (3)
Morteza
le 20 Août 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
le 20 Août 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
