hello.....how find out angle in degree
28 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
更多回答(3 个)
Herbert Ramos
2020-12-9
z = 4+5i;
angleInRadians = angle(z)
angleInDegrees = rad2deg(angleInRadians)
0 个评论
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.
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!