when zooming the plotted dada exceeds axes limits

1 vue (au cours des 30 derniers jours)
Silvia
Silvia le 22 Fév 2014
Réponse apportée : Divyam le 17 Sep 2024
Hello,
I have a doubt. When zooming the data plotted exceed the axes limits and it appear over the GUI. I have used in the plot the option 'Clipping on' and I still have the problem.
Does anyone how to solve the problem?? Thank you very much.
Silvia

Réponses (1)

Divyam
Divyam le 17 Sep 2024
Hi @Silvia,
  • If you are setting the "xlim" and "ylim" properties and want the zoom to be reset to these values, you can add the following code to the end of your plotting code:
zoom reset;
  • This issue can also be avoided by fitting the axes box tightly around the data by setting the axis limits equal to the range of the data using the below code:
xlim([minX, maxX]);
ylim([minY, maxY]);
axis tight;
If the issue still persists, consider upgrading to a newer version of MATLAB using this link: https://www.mathworks.com/downloads/
For more information regarding the "zoom" function and "axis" function, refer to the following documentation:

Catégories

En savoir plus sur Data Exploration 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!

Translated by