xlim command for figures
Afficher commentaires plus anciens
xlim command changes the axis limit of the figure.
How can i also limit data that is contained by the figure?
Appearently, even though xlim is applied data is still there.
Réponse acceptée
Plus de réponses (1)
Wayne King
le 8 Nov 2013
Modifié(e) : Wayne King
le 8 Nov 2013
If when you say limit data, you mean restrict the range of data values, then use ylim
x = randn(100,1);
plot(x);
set(gca,'xlim',[1 25],'ylim',[-1 1])
1 commentaire
Ali Ozdagli
le 9 Nov 2013
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!