plotting Y data on scatter plot
Mostrar comentarios más antiguos
I am using the following command in scatter plot
uisng the following code
for i = 1:6
text(X(i),Y(i),sprintf('(%d)',Y(i)))
end
I am getting the values in E3 format ...I want only like 2500 instead of 2.5E3 easy to interpet any inputs will be highly helpful .Thank you in advance . I have used format shortG but it change for number not the plots
Respuesta aceptada
Más respuestas (1)
Yusuf Suer Erdem
el 18 de En. de 2022
0 votos
Before 'text()' command add 'format long' command. it should be hepful.
1 comentario
Prasad Joshi
el 18 de En. de 2022
Categorías
Más información sobre Annotations 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!