Find the polar representation of (𝑖 − √3 )

2 visualizzazioni (ultimi 30 giorni)
Rea
Rea il 29 Set 2022
Risposto: Star Strider il 29 Set 2022
Find the polar representation of (𝑖 − √3 )

Risposte (3)

KSSV
KSSV il 29 Set 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 il 29 Set 2022

Star Strider
Star Strider il 29 Set 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.
.

Categorie

Scopri di più su Polar Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by