adding text on an image in 2018a
Mostrar comentarios más antiguos
Hello, Why text() is returning: "Index in position 1 exceeds array bounds (must not exceed 1)" when I do:
hold on;
imshow(img)
text(20, 40, 'Some text');
hold off;
This example from the documentation also doesn't work.
x = 0:pi/20:2*pi;
y = sin(x);
plot(x,y)
text(pi,0,'\leftarrow sin(\pi)')
I can live without this and have an alternative, but this would fit much nicer in my design. Many thanks
3 comentarios
Rik
el 12 de Abr. de 2018
The example does result in the expected output for my copy of R2018a. What is the result of the line below?
which text -all
Walter Roberson
el 12 de Abr. de 2018
It is likely that you have a variable named text
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Entering Commands en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!