Find the polar representation of (𝑖 − √3 )

1 view (last 30 days)
Rea
Rea on 29 Sep 2022
Answered: Star Strider on 29 Sep 2022
Find the polar representation of (𝑖 − √3 )

Answers (3)

KSSV
KSSV on 29 Sep 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 on 29 Sep 2022

Star Strider
Star Strider on 29 Sep 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.
.

Categories

Find more on Polar Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!