How to highlight each points in graph
Mostrar comentarios más antiguos
I plotted a graph by reading values from excel file. I need to mark each point / highlight each point on the graph . Can you please help ???
2 comentarios
Fangjun Jiang
el 24 de Mayo de 2021
you mean like this? plot(1:10, 'r-*')
see "doc plot"
Adam Danz
el 24 de Mayo de 2021
The goal is very unclear. What does it mean to highlight a point and how does that differ from plotting the point?
Respuestas (1)
David Hill
el 24 de Mayo de 2021
Look at marker within the plot command.
x=1:5;
plot(x,x,'Marker','*');
Categorías
Más información sobre Develop Apps Using App Designer 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!