How to show 'Marker symbol' for specific values on 2D-plot?
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
KSSV
le 27 Avr 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)
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!