Why does the axis equal command not work in my code?

6 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2009 年 6 月 27 日
When I execute the following code :
axis equal
circle = rsmak('circle');fnplt(circle)
the circle still looks like an ellipse

採用された回答

MathWorks Support Team
MathWorks Support Team 2009 年 6 月 27 日
This is an expected behavior. The AXIS EQUAL command needs to be used after the PLOT command for it to take effect.
Execute the following code for the circle to appear correctly:
circle = rsmak('circle');fnplt(circle)
axis equal

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-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