How do I scale a scatter-plot to 250 by 250 using the line data type?

14 ビュー (過去 30 日間)
Jennifer Smith
Jennifer Smith 2015 年 2 月 15 日
コメント済み: Jennifer Smith 2015 年 2 月 15 日
This is the code:
% x=[1,2,3,4,5,6]
y=exp(x)
scatter(x,y,'*')
line(25,4)
When I tried doing this, I got a scale of 450 by 25. Thanks in advance.

採用された回答

emehmetcik
emehmetcik 2015 年 2 月 15 日
I assume you want to set the axis limits to 0 to 250 for x and 0 to 250 for y. This can be done by "axis"function.
axis([0, 250, 0, 250]); % axis([xmin, xmax, ymin, ymax])
axis equal % May be useful as well.
See Matlab documenation for "axis" function;
  2 件のコメント
Jennifer Smith
Jennifer Smith 2015 年 2 月 15 日
This seems like a reasonable method. I can try this.
Jennifer Smith
Jennifer Smith 2015 年 2 月 15 日
Thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by