Plot the electric field distribution ?

how Plot the electric field distribution above the contour ?
% Plot the electric field distribution
figure;
v_now;
[ex,ey]=gradient(v);
quiver(-ex,-ey); %Quiver command creates a plot, E=-grad(V), hence the negative sign
title('potential ')
how put contour in the same figure of electric field distribution?

 Akzeptierte Antwort

Mischa Kim
Mischa Kim am 17 Mär. 2014
Bearbeitet: Mischa Kim am 17 Mär. 2014

1 Stimme

Use hold all before or after the first plot command:
quiver(...) % replace the dots with your data
hold all;
contour(...)

4 Kommentare

thanks Mischa Kim
electric field distribution appear in the figure as dot not as Arrow or appear small Arrow ,what I must do to make this Arrow appear large
Mischa Kim
Mischa Kim am 17 Mär. 2014
Bearbeitet: Mischa Kim am 17 Mär. 2014
Mary, use the scale parameter:
scale = 2; % double length of vectors
quiver(-ex,-ey,scale)
Thanks Mischa
the figure appear exactly as I want it
Mary Jon
Mary Jon am 27 Mär. 2014
can I making these Arrows of electric field distribution as continuous lines instead of Arrows intersect the contour? How can do that?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Antonio Cedillo Hernandez
Antonio Cedillo Hernandez am 21 Apr. 2020

0 Stimmen

Here you have the full MATLAB code explained (in spanish but the first comment is the code): https://www.youtube.com/watch?v=k9srU6aQfL0

Kategorien

Mehr zu Vector Fields finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by