How to show 'Marker symbol' for specific values on 2D-plot?
Show older comments
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.
Accepted Answer
More Answers (1)
KSSV
on 27 Apr 2018
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 Line 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!