How to have qualitative expressions in 'x' axis plot in MATLAB?

6 vues (au cours des 30 derniers jours)
Alireza Babaei
Alireza Babaei le 22 Sep 2020
Dear scholars,
I was wodering if there is any way that I can write qualitative phrases (e.g. XXXX) in x axis in a plot instead of numerical values.

Réponses (1)

Ameer Hamza
Ameer Hamza le 22 Sep 2020
Yes. Use XTickLabel property of the axes object. For example
ax = axes();
plot(0:10, rand(1,11));
ax.XTick = [0 5 10];
ax.XTickLabel = {'Zero', 'Five', 'ten'};
  1 commentaire
Steven Lord
Steven Lord le 22 Sep 2020
You could also use the xticks and xticklabels functions.
>> plot(1:10);
>> xticks(1:3:10);
>> xticklabels(["one", "four", "seven", "ten"])

Connectez-vous pour commenter.

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by