How to show 'Marker symbol' for specific values on 2D-plot?

In a plot of x (array with 6000 values) and f(x) (also array with 6000 values) I want to show 'Marker symbol' for specific values on 2D-plot? for example, show Marker symbol for f(x) at x(1000) or 2000,3000,4000,...on f(x) plot.

More Answers (1)

x = linspace(0,2*pi,6000) ;
y = sin(x) ;
figure
hold on
plot(x,y)
idx = 1:1000:length(x) ;
plot(x(idx),y(idx),'s','markersize',10)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!