Why is the upper limit of the Y-axis in my loglog plot wrong, after I attempt to set it using handle graphics?

1 vue (au cours des 30 derniers jours)
In general, the axis limits shown do not include the last value that I tried to set using handle graphics. In the example given below, the upper limit on the loglog plot is .1 less than it should be. In this case 0.6 should be the maximum Y value, but is not shown.
Example:
t=linspace(.1,.6,65);
loglog(t(2:65)) % loglog(t) % no error
set(gca,'ytick',.1:.1:1)
Using the entire range of 't' does not cause the error, i.e.:
t=linspace(.1,.6,65);
loglog(t)
set(gca,'ytick',.1:.1:1)

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 27 Juin 2009
This bug has been fixed in Release 14 Service Pack 3 (R14SP3). For previous product releases, read below for any possible workarounds:
As a workaround, it is possible to set the axes limits using the property editor in the figure window.

Plus de réponses (0)

Catégories

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