Borrar filtros
Borrar filtros

Could anyone help me to solve the issue

1 visualización (últimos 30 días)
jaah navi
jaah navi el 30 de Oct. de 2018
Comentada: jaah navi el 31 de Oct. de 2018
i want to plot the x-axis in graph in reverse order iused the following command xlim([34,40]); set(gca,'Xdir','reverse'); when i used the above command it reverses the xaxis. but i want to have numbers 40,38,36,34 in the xaxis. Could anyone help me how to avoid the intermediate number 39,37,35.
  1 comentario
Bruno Luong
Bruno Luong el 30 de Oct. de 2018
Can you please try to give the subject more meaningful than "Could anyone help me to solve the issue".

Iniciar sesión para comentar.

Respuesta aceptada

Bruno Luong
Bruno Luong el 30 de Oct. de 2018
set(gca,'xtick',(34:2:40))
  3 comentarios
Bruno Luong
Bruno Luong el 30 de Oct. de 2018
Editada: Bruno Luong el 30 de Oct. de 2018
Just add (though you already do this)
set(gca,'Xdir','reverse')
Or do all in one instruction
set(gca,'Xdir','reverse','xtick',(34:2:40),'xlim',[34 40])
jaah navi
jaah navi el 31 de Oct. de 2018
thanks it works.

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.

Community Treasure Hunt

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

Start Hunting!

Translated by