hello.....how find out angle in degree

29 ビュー (過去 30 日間)
manoj saini
manoj saini 2013 年 1 月 29 日
回答済み: N/A 2022 年 6 月 7 日
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

採用された回答

Shashank Prasanna
Shashank Prasanna 2013 年 1 月 29 日
z = 4+5i;
angle_in_degrees = angle(z)*180/pi

その他の回答 (3 件)

CHANDRABHAN Singh
CHANDRABHAN Singh 2020 年 5 月 26 日
angle = angle(z)*double(unitConversionFactor(u.radian,u.degree))

Herbert Ramos
Herbert Ramos 2020 年 12 月 9 日
z = 4+5i;
angleInRadians = angle(z)
angleInDegrees = rad2deg(angleInRadians)

N/A
N/A 2022 年 6 月 7 日
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.

製品

Community Treasure Hunt

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

Start Hunting!

Translated by