2

如何调整 x 和 y 轴的大小?

我想要什么,更具体;

3900  |
  .   |
  .   |
  .   |
  60  |
      |
  30  |
      |_____________________________
      0  60  120  180  ...        3600  

我做了什么 ;

  a = [0:0.1:10000];
  plot(a);

我应该写什么才能按预期完成调整 x 和 y 轴的大小?

编辑:

我不想;

      |
      |
      |
      |
      |
      |
      |
      |
      |
      |
3900  |
  .   |
  .   |
  .   |
  60  |
      |
  30  |
      |___________________________________________________________________
      0  60  120  180  ...        3600  
4

2 回答 2

7

检查文档: http: //www.mathworks.com/help/techdoc/ref/axis.html

axis([xmin xmax ymin ymax])
于 2012-05-24T06:49:47.920 回答
5

另一种方式:

xlim([0 3600])
ylim([0 3900])

http://www.mathworks.com/help/techdoc/ref/xlim.html

http://www.mathworks.com/help/techdoc/ref/ylim.html

我认为对于步长

set(gca, 'XTick', [0:60:3600])
set(gca, 'YTick', [0:30:3900])
于 2012-05-24T06:50:49.963 回答