add text to value of a plot

1 visualización (últimos 30 días)
alpedhuez
alpedhuez el 25 de Mayo de 2020
Respondida: Star Strider el 25 de Mayo de 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.

Respuesta aceptada

Star Strider
Star Strider el 25 de Mayo de 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:
.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by