Gradient of a 2D plot
Ältere Kommentare anzeigen
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
am 30 Sep. 2020
What is wrong with quiver. It generates arrows in the gradient direction.
Prince Alex
am 30 Sep. 2020
Akzeptierte Antwort
Weitere Antworten (1)
KSSV
am 30 Sep. 2020
M = sqrt(U.^2+W.^2) ;
contour(X,Y,M)
1 Kommentar
Prince Alex
am 30 Sep. 2020
Bearbeitet: Prince Alex
am 30 Sep. 2020
Kategorien
Mehr zu Vector Fields finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!