Effacer les filtres
Effacer les filtres

How do I change the size of a graph/plot to be longer?

5 vues (au cours des 30 derniers jours)
Bennett Torrance
Bennett Torrance le 6 Fév 2017
I have a plot that looks very stretched to the left and right. Is there a way to stretch the graph in the vertical direction?
Thanks!
  2 commentaires
John Chilleri
John Chilleri le 6 Fév 2017
You can always specify the axis with
axis([xmin xmax ymin ymax])
or stretch the window manually - also, is it a problem with the depiction or with the data itself?
Perhaps try:
axis equal
Hope this helps!
Bennett Torrance
Bennett Torrance le 6 Fév 2017
the data is fine, the plot displaying it is just squished...

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 6 Fév 2017
Try axis options like "axis equal", "axis square", etc. If those don't do it for you then set the position property of the axis, like this:
handleToAxis.Units = 'normalized'; % Or leave as pixels if you want.
handleToAxis.Position = [x, y, width, height]; % If normalized units, all values are between 0 and 1

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by