Why does the axis equal command not work in my code?
6 ビュー (過去 30 日間)
古いコメントを表示
When I execute the following code :
axis equal
circle = rsmak('circle');fnplt(circle)
the circle still looks like an ellipse
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!