How to scale a graph
390 次查看(过去 30 天)
显示 更早的评论
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);
回答(2 个)
Andy
2020-3-9
Use this immediately after the plot command to specify how you want the axis to plot.
ylim([-19 0])
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graph and Network Algorithms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!