Remove numbers from axis and use strings instead

7 visualizaciones (últimos 30 días)
Hi World,
I'm currently doing some plots and diagramms for my thesis. Unfortunately I am not allowed to include some units and dimensions in some of the plots.
I would like to know, how can I remove the numers from the axis and replace them with a series of strings... For example let the x-axis be the time. At t=0 I would like to include t_{start} and at the end of the axis t_{end} instead of the correspondig values.
I hope somebody here can helpme :) Thank you in advance!

Respuesta aceptada

VBBV
VBBV el 2 de Mayo de 2023
t = 0:0.01:10;
a = 1.02;
Y = a*t.^2;
plot(t,Y);
xticks([min(t) max(t)])
xticklabels(string({'t_{start}','t_{end}'}));
  2 comentarios
VBBV
VBBV el 2 de Mayo de 2023
you can do something like above
Samuel Garces Utermann
Samuel Garces Utermann el 2 de Mayo de 2023
Perfect it worked. Thank you!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Axis Labels en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by