Is it possible to just set the lower limit of the y-axis?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
min lee
am 19 Apr. 2024
Kommentiert: Star Strider
am 19 Apr. 2024
I just want to set the lower limit of the y-axis to zero.
But with 'ylim', I have to also set the upper limit, which I do not know what value is appropriate.
What should I do?
2 Kommentare
Mathieu NOE
am 19 Apr. 2024
you could set the upper limit to the max of the displayed data (so compute the max and use it in the ylim arguments)
Akzeptierte Antwort
Julius Muschaweck
am 19 Apr. 2024
Two related ways I'm aware of (besides computing the max, which may be tedious with multiple plotted lines).
xx = linspace(0,2*pi,100);
yy = sin(xx);
figure(14);
clf;
plot(xx,yy);
%%
ax = gca;
ax.YLim(1) = 0;
%%
yl = ylim();
ylim([0,yl(2)]);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Exploration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!