Is it possible to just set the lower limit of the y-axis?
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
Mathieu NOE
2024-4-19
you could set the upper limit to the max of the displayed data (so compute the max and use it in the ylim arguments)
采纳的回答
Julius Muschaweck
2024-4-19
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!