
How can we display a graph in axis of matlab GUI by pressing another button(say display)?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
D Joseph
am 19 Aug. 2015
Kommentiert: D Joseph
am 21 Aug. 2015
How can we display a graph in axis of matlab GUI by pressing another button(say display)
0 Kommentare
Akzeptierte Antwort
Morteza
am 19 Aug. 2015
Bearbeitet: Morteza
am 19 Aug. 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 Kommentare
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;
0 Kommentare
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;
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!