Change Resolution (step size) of axes
529 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anirudh Roy
le 1 Juil 2020
Réponse apportée : Gurpreet Singh
le 1 Juil 2020
I wanted to know how to change the step size of the axes in a matlab plot (for eg if the range on Y axis is 0-A, and i want to have markings on ya axis in the steps of A/10 how do tell matlab to do that)
0 commentaires
Réponse acceptée
Gurpreet Singh
le 1 Juil 2020
Hi Anirudh,
The following commands might help you.
plot(x,y);
ylim([0,A]);
yticks(0:(A/10):A);
Please refer to the https://in.mathworks.com/help/matlab/creating_plots/change-tick-marks-and-tick-labels-of-graph-1.html (change-tick-marks-and-tick-labels) documentation for more information.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Line Plots 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!