Why is the upper limit of the Y-axis in my loglog plot wrong, after I attempt to set it using handle graphics?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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)
Akzeptierte Antwort
MathWorks Support Team
am 27 Jun. 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.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!