add text to value of a plot

1 vue (au cours des 30 derniers jours)
alpedhuez
alpedhuez le 25 Mai 2020
I have a plot with x axis takes the value 1, 2, 3,.... I want to add a text "day" to these values so that they will be "Day 1","Day 2", "Day 3",... I did not find a relevant post on the Internet.

Réponse acceptée

Star Strider
Star Strider le 25 Mai 2020
if you have R2016b or later, use the xtickformat function to do what you want.
Example —
x = 1:10
y = rand(1,10);
figure
plot(x, y)
xtickformat('Day %g')
producing:
.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by