if i have complex number z=4+5i and i want angle(z) it is returning angle value in numerical form......is any method find angle in degree............thanks

 Akzeptierte Antwort

Shashank Prasanna
Shashank Prasanna am 29 Jan. 2013

0 Stimmen

z = 4+5i;
angle_in_degrees = angle(z)*180/pi

Weitere Antworten (3)

CHANDRABHAN Singh
CHANDRABHAN Singh am 26 Mai 2020

0 Stimmen

angle = angle(z)*double(unitConversionFactor(u.radian,u.degree))
Herbert Ramos
Herbert Ramos am 9 Dez. 2020

0 Stimmen

z = 4+5i;
angleInRadians = angle(z)
angleInDegrees = rad2deg(angleInRadians)
N/A
N/A am 7 Jun. 2022

0 Stimmen

Hi, Manoj. Hopefully you are doing well. Here is my approach to solving your question.
For z = 4i + 5, the angle is tan^-1(0.8), giving you approximately 39 degrees.

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by