How can we display a graph in axis of matlab GUI by pressing another button(say display)?

 Respuesta aceptada

Morteza
Morteza el 19 de Ag. de 2015
Editada: Morteza el 19 de Ag. de 2015
for that purpose u need to set axes as a current axis to plot1 for example: (Start is that button that must plot the data on axis) but before that u set axis in another place of your GUI by name of axes1
function Start_Callback(hObject, eventdata, handles)
axes(handles.axes1)
ezplot('sin(x)');
%

2 comentarios

How can we clear the graph in axis of matlab GUI by pressing another button(say clear)?

Iniciar sesión para comentar.

Más respuestas (3)

just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
just create another button and use like below if you several axes
function Clear_Callback(hObject, eventdata, handles)
axes(handles.axes1)
cla;
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.

Etiquetas

Preguntada:

el 19 de Ag. de 2015

Comentada:

el 21 de Ag. de 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by