Plot the electric field distribution ?
25 views (last 30 days)
Show older comments
Mary Jon
on 17 Mar 2014
Answered: Antonio Cedillo Hernandez
on 21 Apr 2020
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?
0 Comments
Accepted Answer
Mischa Kim
on 17 Mar 2014
Edited: Mischa Kim
on 17 Mar 2014
Use hold all before or after the first plot command:
quiver(...) % replace the dots with your data
hold all;
contour(...)
4 Comments
More Answers (1)
Antonio Cedillo Hernandez
on 21 Apr 2020
Here you have the full MATLAB code explained (in spanish but the first comment is the code): https://www.youtube.com/watch?v=k9srU6aQfL0
0 Comments
See Also
Categories
Find more on Vector Fields in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!