Adjusting axis limits
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to have the axis limits automatically adjust. I know they do by default, but they way it does it, the extreme data points are right on the edge of the plot. Is there any way to specify a margin?
I looked in axis properties but didn't see anything.
0 commentaires
Réponse acceptée
Walter Roberson
le 3 Nov 2011
No, there is no mechanism for specifying a margin.
3 commentaires
Walter Roberson
le 3 Nov 2011
max(YourData(isfinite(YourData(:)))
Or use NaN instead of inf, as max() ignores NaN.
Jan
le 3 Nov 2011
Exactly for this task I'm using MinMaxElem(Y, 'finite'): http://www.mathworks.com/matlabcentral/fileexchange/30963-minmaxelem .
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!