How to ajust matlab GUI axes appearence?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
bh dhouha
el 8 de Mayo de 2015
Respondida: Joseph Cheng
el 8 de Mayo de 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
0 comentarios
Respuesta aceptada
Joseph Cheng
el 8 de Mayo de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Graphics Object Properties en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!