when zooming the plotted dada exceeds axes limits

1 次查看(过去 30 天)
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

回答(1 个)

Divyam
Divyam 2024-9-17
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:

类别

Help CenterFile Exchange 中查找有关 Data Exploration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by