Gradient of a 2D plot

87 Ansichten (letzte 30 Tage)
Prince Alex
Prince Alex am 30 Sep. 2020
Kommentiert: Star Strider am 30 Sep. 2020
I have a 2D plot of potential (V) (circular contour plot). I have to find the electric field (E) by taking the gradient. How is it possible to see the gradient of V. [U,W]=gradient(V) returns the gradient in X and Y direction and quiver(X,Y,U,W) helps to visualize the vector field. How is it possible to view effective gradient. Contour (X,Y,U) will only help me to see gradient in x direction. How can I see the effect of gradient which is a vector sum of both gradient in X and Y.?
  2 Kommentare
Ameer Hamza
Ameer Hamza am 30 Sep. 2020
What is wrong with quiver. It generates arrows in the gradient direction.
Prince Alex
Prince Alex am 30 Sep. 2020
I am looking for contourf plot of the gradient. Thank you

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Star Strider
Star Strider am 30 Sep. 2020
See the gradient documentation section on Contour Plot of Vector Field . It demonstrates exactly what you are describing.
  4 Kommentare
Prince Alex
Prince Alex am 30 Sep. 2020
Thank you. I think it will work. But the above script is showing matrix dimension error. Thank you so much
Star Strider
Star Strider am 30 Sep. 2020
My pleasure!
It should not be showing any error. It is an example from the documentation (that I linked to in my oridginal Answer), and ran for me without error in R2020b. The ‘px’ and ‘py’ matrices are both (21x21), so the addition should work. If it is not working with your code, please post it.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

KSSV
KSSV am 30 Sep. 2020
M = sqrt(U.^2+W.^2) ;
contour(X,Y,M)
  1 Kommentar
Prince Alex
Prince Alex am 30 Sep. 2020
Bearbeitet: Prince Alex am 30 Sep. 2020
Its a nice way. But since it is electric field it will have both positive and negative values. Squaring results in absolute value. @ KSSV a simple U + W will give the answer?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Vector Fields finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by