Azzera filtri
Azzera filtri

Could anyone help me to solve the issue

1 visualizzazione (ultimi 30 giorni)
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 Commento
Bruno Luong
Bruno Luong il 30 Ott 2018
Can you please try to give the subject more meaningful than "Could anyone help me to solve the issue".

Accedi per commentare.

Risposta accettata

Bruno Luong
Bruno Luong il 30 Ott 2018
set(gca,'xtick',(34:2:40))
  3 Commenti
Bruno Luong
Bruno Luong il 30 Ott 2018
Modificato: Bruno Luong il 30 Ott 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 il 31 Ott 2018
thanks it works.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by