hello.....how find out angle in degree
29 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
manoj saini
el 29 de En. de 2013
Respondida: N/A
el 7 de Jun. de 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
0 comentarios
Respuesta aceptada
Más respuestas (3)
CHANDRABHAN Singh
el 26 de Mayo de 2020
angle = angle(z)*double(unitConversionFactor(u.radian,u.degree))
0 comentarios
Herbert Ramos
el 9 de Dic. de 2020
z = 4+5i;
angleInRadians = angle(z)
angleInDegrees = rad2deg(angleInRadians)
0 comentarios
N/A
el 7 de Jun. de 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.
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!