Find the polar representation of (𝑖 − √3 )

2 visualizaciones (últimos 30 días)
Rea
Rea el 29 de Sept. de 2022
Respondida: Star Strider el 29 de Sept. de 2022
Find the polar representation of (𝑖 − √3 )

Respuestas (3)

KSSV
KSSV el 29 de Sept. de 2022
Hint:
Use abs to find r.
Use atan to find the angle.
Use sin, cos to get the polar form.
x = r*cos(theta) ;
y = r*sin(theta) ;

Torsten
Torsten el 29 de Sept. de 2022

Star Strider
Star Strider el 29 de Sept. de 2022
Perhaps:
phi = angle(1i - sqrt(3)) % Radian Angle Of Complex Number
phi = 2.6180
mag = abs(1i - sqrt(3)) % Magnitude Of Complex Number
mag = 2.0000
phasor = [mag phi] % Phasor Representation Of Complex Number
phasor = 1×2
2.0000 2.6180
Use the polarplot function to plot it.
.

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by