how to resize x and y axis

蹲街弑〆低调 提交于 2019-12-02 06:20:55

问题


How can I resize x and y axis ?

What I want, n more specific;

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

What I have done ;

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

What should I write so that resizing x and y axis is done as expected?

EDIT:

I do not want;

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

回答1:


Check the documentation: http://www.mathworks.com/help/techdoc/ref/axis.html

axis([xmin xmax ymin ymax])



回答2:


Another way:

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

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

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

I think for the step size it's

set(gca, 'XTick', [0:60:3600])
set(gca, 'YTick', [0:30:3900])


来源:https://stackoverflow.com/questions/10732463/how-to-resize-x-and-y-axis

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!