Effacer les filtres
Effacer les filtres

Adding a point on a quiver graph.

7 vues (au cours des 30 derniers jours)
Alice K
Alice K le 1 Juil 2022
Modifié(e) : Cris LaPierre le 2 Juil 2022
Hi All,
I have a graph like this, how would I go about adding a point of this grid. Is this something that is a possible thing to do?
Thanks
  2 commentaires
Adam Danz
Adam Danz le 1 Juil 2022
What is "adding a point of the grid"?
Do you mean you'd like to add another quiver arrow? Do you want to add a point marker to the plot? What grid?
Alice K
Alice K le 1 Juil 2022
Sorry I mean adding a point marker to plot. Very new to MATLAB still learning what everything is called.
I have a point that i would like to add but I don't know how.

Connectez-vous pour commenter.

Réponse acceptée

Cris LaPierre
Cris LaPierre le 1 Juil 2022
Modifié(e) : Cris LaPierre le 2 Juil 2022
You would just use an additional plot command to add the point(s) you want with the desired marker. For example
load('wind','x','y','u','v')
X = x(11:22,11:22,1);
Y = y(11:22,11:22,1);
U = u(11:22,11:22,1);
V = v(11:22,11:22,1);
quiver(X,Y,U,V)
axis equal
hold on
plot(X(5,5),Y(8,3),'rx')
hold off
  1 commentaire
Alice K
Alice K le 2 Juil 2022
Amazing thank you, it works

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by