Borrar filtros
Borrar filtros

How can I use the text and sprintf functions to label a point on a graph?

47 visualizaciones (últimos 30 días)
I need to label a point with its coordinates (x = 5/6, y = 6/9) correct to 4 decimal places. The line y consists of one plot, hence the (x, y, str). When I try the following code no label appears on my graph.
x = 5/7:5/7;
y = % equation of line
plot(x, y);
str = sprintf('%0.4', 5/7, 6/9);
text(x, y, str);

Respuesta aceptada

Star Strider
Star Strider el 25 de Oct. de 2014
Try this:
text(5/7, 6/9, str);
  4 comentarios
Andy
Andy el 25 de Oct. de 2014
Whoops. I added the 'f', works now. Thank you very much

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by