[GUI] How do change the min and max values of a plot.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to change the min and max values of a plot in GUI.
And the following code doesn't work:
axis(handles.axes1,[0,100,0,1]);
This is because then when I plot a scatter after
scatter(handles.axes1, x, y);
It doesn't keep the same dimensions on the axes.
I then tried hold(handles.axes1);
between the two bits of code and it still doesn't work... confused.
What am I doing wrong?
0 Commenti
Risposte (1)
Image Analyst
il 19 Dic 2012
Use the xlim() and ylim() functions.
7 Commenti
Jan
il 19 Dic 2012
@Shane: Besides Walter's suggestion, what about calling XLIM after all plots have been made?
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!