Filter löschen
Filter löschen

when zooming the plotted dada exceeds axes limits

7 Ansichten (letzte 30 Tage)
Silvia
Silvia am 22 Feb. 2014
Beantwortet: Divyam am 17 Sep. 2024 um 11:03
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

Antworten (1)

Divyam
Divyam am 17 Sep. 2024 um 11:03
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:

Kategorien

Mehr zu Data Exploration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by