Borrar filtros
Borrar filtros

how to edit x axis and y axis values?

1 visualización (últimos 30 días)
Kaluachchi Gedara Saumya Bandara
Kaluachchi Gedara Saumya Bandara el 30 de Nov. de 2021
Comentada: Star Strider el 30 de Nov. de 2021
How to edit these numerical values in the form of variables? for a exapme x1, x2 ......... on the graph

Respuesta aceptada

Star Strider
Star Strider el 30 de Nov. de 2021
Use the Axis Properties, specifically XTickLabel, YTickLabel, and ZTickLabel to specify them.
x = 1:10;
y = rand(size(x));
figure
plot(x, y)
Ax = gca;
xt = Ax.XTick;
Ax.XTickLabel = compose('x%d',(1:numel(xt))); % As Numbers
yt = Ax.YTick;
Ax.YTickLabel = compose('y_{%d}',(1:numel(yt))); % As Subscripts
Another option is the NumericRuler Properties property TickLabelFormat, however I believe the Axis Properties functions are more appropriate here.
Experiment to get different results.
.
  2 comentarios
Kaluachchi Gedara Saumya Bandara
Kaluachchi Gedara Saumya Bandara el 30 de Nov. de 2021
could you please tell me how to edit the points that only intersect x axis and y axis?
Star Strider
Star Strider el 30 de Nov. de 2021
I will do my best, however I have no idea what the desired result is.
One option is to use a legend object to identify the lines, the other is to use text objects for each point of interest.
x = 1:10;
y = rand(size(x));
figure
plot(x, y)
Ax = gca;
xt = Ax.XTick;
Ax.XTickLabel = compose('x%d',(1:numel(xt))); % As Numbers
yt = Ax.YTick;
Ax.YTickLabel = compose('y_{%d}',(1:numel(yt))); % As Subscripts
text(x(1), y(1), sprintf('$$\\ \\leftarrow x=%.2f,\\ y=%.2f$$',x(1),y(1)), 'Horiz','left', 'Vert','middle', 'Interpreter','latex')
text(x(end), y(end), sprintf('$$x=%.2f,\\ y=%.2f\\ \\rightarrow$$',x(end),y(end)), 'Horiz','right', 'Vert','middle', 'Interpreter','latex')
Make appropriate changes to get the desired result.
.

Iniciar sesión para comentar.

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

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by