How to highlight each points in graph

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 Comments

you mean like this? plot(1:10, 'r-*')
see "doc plot"
The goal is very unclear. What does it mean to highlight a point and how does that differ from plotting the point?

Sign in to comment.

Answers (1)

Look at marker within the plot command.
x=1:5;
plot(x,x,'Marker','*');

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Asked:

on 24 May 2021

Answered:

on 24 May 2021

Community Treasure Hunt

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

Start Hunting!