Adding a label with text on a plot
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
HC98
el 28 de Feb. de 2024
Respondida: Chunru
el 28 de Feb. de 2024
I have a plot of some data and I want to highlight one of its distinct peaks like this:
Is there any way that I can do this?
0 comentarios
Respuesta aceptada
Chunru
el 28 de Feb. de 2024
x = -3:.1:3
y = exp(-(x-0.5).^2/2);
plot(x, y)
% need to adjust the coordinates (normalized unit)
% doc annotation for more details
annotation("doublearrow", [0.58 0.58], [0.12 0.93]);
text(0.5, 0.4, "a", "Color", "r") % data unit
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!