add text to value of a plot

2 views (last 30 days)
alpedhuez
alpedhuez on 25 May 2020
Answered: Star Strider on 25 May 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.

Accepted Answer

Star Strider
Star Strider on 25 May 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:
.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!