How do I plot the equipotential lines in matlab?

How do I plot the equipotential lines in matlab (matlab novice here) from the calculated electric potential of a thin rod with ends at -0.5 m and 0.5 m, and has a non-uniform linear charge density of the form: lambda=sin(pi*x/L).
Thank you!

Antworten (1)

KSSV
KSSV am 8 Apr. 2021
L = 1 ;
x = linspace(-0.5,+0.5) ;
lambda = sin(pi*x/L) ;
plot(x,lambda)

Kategorien

Mehr zu Phased Array Design and Analysis finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 8 Apr. 2021

Bearbeitet:

Rik
am 27 Mai 2021

Community Treasure Hunt

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

Start Hunting!

Translated by