How to ajust matlab GUI axes appearence?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
bh dhouha
am 8 Mai 2015
Beantwortet: Joseph Cheng
am 8 Mai 2015
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
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149934/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Joseph Cheng
am 8 Mai 2015
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Object Properties finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!