Is there any way to display a value instead of circles for points on a plot?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
joys roselin
el 17 de Nov. de 2016
Respondida: Walter Roberson
el 18 de Nov. de 2016
Is there any way to display a value instead of circles for points on a plot?
0 comentarios
Respuesta aceptada
Walter Roberson
el 18 de Nov. de 2016
a=1:10:100;
b=sin(a);
plot(a,b);
labels = arrayfun(@(A,B) sprintf('%g:%g', A, B), a, b, 'Uniform', 0);
text(a, b, labels)
0 comentarios
Más respuestas (1)
Brendan Hamm
el 17 de Nov. de 2016
You can use the text function.
x = rand(5,1);
y = rand(5,1);
txt = num2str((1:5)');
text(x,y,txt)
1 comentario
joys roselin
el 18 de Nov. de 2016
Editada: Walter Roberson
el 18 de Nov. de 2016
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!