Filter löschen
Filter löschen

Could anyone help me to solve the issue

1 Ansicht (letzte 30 Tage)
jaah navi
jaah navi am 30 Okt. 2018
Kommentiert: jaah navi am 31 Okt. 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 Kommentar
Bruno Luong
Bruno Luong am 30 Okt. 2018
Can you please try to give the subject more meaningful than "Could anyone help me to solve the issue".

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 30 Okt. 2018
set(gca,'xtick',(34:2:40))
  3 Kommentare
Bruno Luong
Bruno Luong am 30 Okt. 2018
Bearbeitet: Bruno Luong am 30 Okt. 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 am 31 Okt. 2018
thanks it works.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by