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

48 vues (au cours des 30 derniers jours)
manoj saini
manoj saini le 29 Jan 2013
Réponse apportée : N/A le 7 Juin 2022
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

Réponse acceptée

Shashank Prasanna
Shashank Prasanna le 29 Jan 2013
z = 4+5i;
angle_in_degrees = angle(z)*180/pi

Plus de réponses (3)

CHANDRABHAN Singh
CHANDRABHAN Singh le 26 Mai 2020
angle = angle(z)*double(unitConversionFactor(u.radian,u.degree))

Herbert Ramos
Herbert Ramos le 9 Déc 2020
z = 4+5i;
angleInRadians = angle(z)
angleInDegrees = rad2deg(angleInRadians)

N/A
N/A le 7 Juin 2022
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.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by