How can i plot Electric field graph of Electric dipole?
29 ビュー (過去 30 日間)
古いコメントを表示
How can i plot graph with two different independent variable with one dependent variable? Like Electric field of dipole
1 件のコメント
採用された回答
Joseph Cheng
2015 年 3 月 5 日
you can use the function quiver() examples on its use can be found http://www.mathworks.com/help/matlab/ref/quiver.html. So if position (x and y) about the dipole are your independent variables and the magnitude of the field is your dependent the quiver plot can show you at the x and y position the magnitude and direction of the field.
2 件のコメント
Joseph Cheng
2015 年 3 月 5 日
it has been a while but i'm taking a is the angle normal to dipole and R is the distance from the center point between the two poles. Then you can convert any X and Y coordinate into distance and angle.
r = sqrt(x^2+y^2)
a = atan2d(y,x).
その他の回答 (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
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!