How can we display a graph in axis of matlab GUI by pressing another button(say display)?
Mostrar comentarios más antiguos
How can we display a graph in axis of matlab GUI by pressing another button(say display)
Respuesta aceptada
Más respuestas (3)
Morteza
el 20 de Ag. de 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Morteza
el 20 de Ag. de 2015
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
