From: Steven on
Hi,

Here's what I'm trying to do. I want to set lower/upper limits for the x-axis of a plot, and I also want to just set the lower limit for the y-axis and make the upper limit for the y-axis on auto. Is there a way to do that? Thanks,
From: Matt Fig on
In some cases, this works without trouble:
ylim([0 inf]) % or your lower limit.
xlim([0 10]) % or your lower and upper limit.
From: Steven on
Thanks a lot Matt, that seems to do the job.