Borrar filtros
Borrar filtros

axis X special type

1 visualización (últimos 30 días)
Matus
Matus el 23 de Abr. de 2013
Hello,
I would like to construct a graph which has the axis x with values arranged 3, 2, 1, 0, 1, 2, 3, ... (normally, it would be -3 -2 -1 0 1 2 3 .. but I need it as mentioned above). Can anyone help me?
Thank you.

Respuesta aceptada

the cyclist
the cyclist el 23 de Abr. de 2013
Editada: the cyclist el 23 de Abr. de 2013
Here's one way.
figure
plot(-3:3,1:7,'.-')
set(gca,'XTickLabel',[3 2 1 0 1 2 3])
Note that I have only changed the label of the axis, but not the values of the plotted points themselves, which still have x values running from -3 to 3.
  1 comentario
Matus
Matus el 23 de Abr. de 2013
ok, thank you, it's useful for me.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by