Plot the electric field distribution ?
25 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Mischa Kim
2014 年 3 月 17 日
編集済み: Mischa Kim
2014 年 3 月 17 日
Use hold all before or after the first plot command:
quiver(...) % replace the dots with your data
hold all;
contour(...)
4 件のコメント
その他の回答 (1 件)
Antonio Cedillo Hernandez
2020 年 4 月 21 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Vector Fields についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!