Seting ticks on axis
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
I have the following code:
A=linspace(-0.5,0.5)
B=linspace(-12.5,15)
plot(A,B)
axis([-0.5 0.5 -25 25])
set(gca,'XTick',[-0.5:0.25:0.25])
set(gca,'YTick',[-25:12.5:25])
My problem is that on the x-axis the last tick is missing: tick number 0.5 (I have -0.5 -0.25 0 0.25 )and I would like to have 0.5 at the end of the x-axis. ( y-axis is Ok)
Thanks
Shani
0 Kommentare
Akzeptierte Antwort
the cyclist
am 2 Jun. 2013
I guess instead of this
set(gca,'XTick',[-0.5:0.25:0.25])
you actually wanted this
set(gca,'XTick',[-0.5:0.25:0.5])
?
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Axis Labels 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!