how to plot a perfect cartesian plane

Hello, I generated a script that creates a wind turbine blade and creates the surf plots. I would like to have x_axis/y_axis = 1 in order to have a realistic view of the blade. Does anyone have any suggestions on how to do it? Thanks in advice for the help!

 採用された回答

Star Strider
Star Strider 2017 年 11 月 11 日

2 投票

Guessing here. See if using axis equal after you create the plot does what you want. You can set the axis limits separately with another axis call.
To illustrate:
figure(1)
surf(X, Y, Z)
axis([-1 1 -1 1 -5 5])
axis equal
This preserves the axis limits set in the first call, then makes the aspect ratio proportionate to the axis limits for the three axes.

2 件のコメント

Paris Pasqualin
Paris Pasqualin 2017 年 11 月 12 日
It worked! Thanks a lot
Star Strider
Star Strider 2017 年 11 月 12 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by