How to ajust matlab GUI axes appearence?

2 ビュー (過去 30 日間)
bh dhouha
bh dhouha 2015 年 5 月 8 日
回答済み: Joseph Cheng 2015 年 5 月 8 日
I adjusted x axe and y axe to be equal (as shown in the fig ) but in the interface they don't appear to be equal, it doesnt take the same step . I would like that they "appear" equal so that circle arcs etc be shown correct. Thanks

採用された回答

Joseph Cheng
Joseph Cheng 2015 年 5 月 8 日
use the call axis equal like in the example below
t = 0:.01:2*pi;
x = 10*cos(t);
y = 10*sin(t);
figure,plot(x,y), axis equal

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVisual Exploration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by