Seting ticks on axis
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
the cyclist
il 2 Giu 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Axis Labels in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!