How to scale a graph

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);

Answers (2)

Andy
Andy on 9 Mar 2020

1 vote

Use this immediately after the plot command to specify how you want the axis to plot.
ylim([-19 0])
Srivardhan Gadila
Srivardhan Gadila on 13 Mar 2020

0 votes

Refer to Specify Axis Limits and specify the limits for X and Y axis.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 6 Mar 2020

Answered:

on 13 Mar 2020

Community Treasure Hunt

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

Start Hunting!