Setting axis limits of a plot

3 次查看(过去 30 天)
I have two sets of data, x and y which I am plotting together:
plot(x,y)
I'm having a problem setting the axis limits however. I am using the method shown in the online documentation:
axis([xmin,xmax,ymin,ymax])
Or in my case:
axis([1,1024,1,1024])
The problem is when I enter this it creates a new figure with the correct limits but with no data plotted.

采纳的回答

Paulo Silva
Paulo Silva 2011-7-4
axis(gca,[1,1024,1,1024])
or
ax=axes
plot(x,y)
axis(ax,[1,1024,1,1024])
  3 个评论
Paulo Silva
Paulo Silva 2011-7-4
set(gca,'ydir','reverse')

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by