Effacer les filtres
Effacer les filtres

how to mark 2D plot with shapes for long array?

1 vue (au cours des 30 derniers jours)
Kobi
Kobi le 7 Oct 2018
Modifié(e) : jonas le 7 Oct 2018
trying to mark 2D plots with shapes using the following command:
h=semilogy(lambda,Hb);
set(h,'linestyle','-','color','b','marker','s')
a problem occure when the plots are for large array of vectors, then the shapes are crammed up and i cant really distinguish from them.
what can i do?

Réponse acceptée

jonas
jonas le 7 Oct 2018
Modifié(e) : jonas le 7 Oct 2018
Use the 'markerindices' argument, introduced in 2016b
plot(x, y, 'markerindices', [1:10:lenght(x)])
puts markers on every 10th point. In older released you need to use something like
plot(x, y, 'k-',...
x(1:10:end),y(1:10:end),'ko')
Which is really annoying as you get 2 different line objects.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by