How to scale a graph
Mostrar comentarios más antiguos

My graph is the at the bottom one (second graph), but it supposed to look like the one above it (first graph). The values (x,y) are the same. Is there a way to scale it like the first graph?
My code
figure(1)
plot(Idx,Deflection,'-b','linewidth',1);
1 comentario
Walter Roberson
el 6 de Mzo. de 2020
axis equal
Respuestas (2)
Andy
el 9 de Mzo. de 2020
1 voto
Use this immediately after the plot command to specify how you want the axis to plot.
ylim([-19 0])
Srivardhan Gadila
el 13 de Mzo. de 2020
0 votos
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!