about axis ticks: how to set 10 ticks with 5 labels?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Yuji Zhang
el 23 de Nov. de 2013
Comentada: Yuji Zhang
el 23 de Nov. de 2013
Hi everyone,
I want the axis to have ticks at 1:1:10, and tick labels only at 2:2:10
Anybody know how to do this? I tried
x=1:10;
y = x;
plot(x, y)
ylim([0 10])
set(gca,'YTick', 1:1:10, 'YTickLabel', 2:2:10 );
set(gcf,'PaperUnits','inches','PaperPosition',[0 0 2 2])
print(gcf,'-dtiffn','-r600', 'test.tiff');
The result is something that doesn't make sense. See attachment please.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 23 de Nov. de 2013
Editada: Azzi Abdelmalek
el 23 de Nov. de 2013
x=1:10;
y = x;
plot(x, y)
ylim([0 10])
set(gca,'YTick', 1:1:10, 'YTickLabel', {'' '2' '' '4' '' '6' '' '8' '' '10'} );
Más respuestas (0)
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!