Euler's identity with angle in degrees
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ali Kiral
el 30 de Jun. de 2023
Comentada: Ali Kiral
el 30 de Jun. de 2023
How can I get MATLAB to accept a in degress in exp(aj) to return a complex number where j^2=-1? By default the software takes a in radians.
0 comentarios
Respuesta aceptada
Más respuestas (2)
Joe Vinciguerra
el 30 de Jun. de 2023
Editada: Joe Vinciguerra
el 30 de Jun. de 2023
[EDIT: oops. converted in the wrong direction.]
deg2rad will convert degrees to radians (https://www.mathworks.com/help/matlab/ref/deg2rad.html).
So you'll do something like this:
j = sqrt(-1);
a = 180;
exp(deg2rad(a)*j)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!