How to plot quivers only on pixels with an intensity greater than 0?

3 vues (au cours des 30 derniers jours)
I am trying to quantify the direction of my quiver plot, but quivers stemming from pixels with an intensity of 0 tend to skew the data. Therefore, I want to stop quivers from being plotted on pixels with an intensity of 0.

Réponse acceptée

Cris LaPierre
Cris LaPierre le 20 Sep 2021
quiver will not plot nan, so a simple solution may be to replace any value of 0 with nan.
U(U==0)=nan;
V(V==0)=nan;
quiver(X,Y,U,V)
  3 commentaires
Cris LaPierre
Cris LaPierre le 20 Sep 2021
Modifié(e) : Cris LaPierre le 20 Sep 2021
That was an example of how to get quiver to not draw vectors that met some underlying condition. You can use the variable containing intensity values (which should be the same size as U and V).
U(intensity==0)=nan;
V(intensity==0)=nan;
quiver(X,Y,U,V)
Flint Marko
Flint Marko le 20 Sep 2021
Your suggestion worked! Thanks for the help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Vector Fields dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by