How to scale a graph
388 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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);
Réponses (2)
Andy
le 9 Mar 2020
Use this immediately after the plot command to specify how you want the axis to plot.
ylim([-19 0])
0 commentaires
Voir également
Catégories
En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!