how to solve this complex equation in matlab?

34 visualizaciones (últimos 30 días)
peng peng
peng peng el 23 de Feb. de 2020
Respondida: Star Strider el 23 de Feb. de 2020
I have an equation exp(pi/4*i)*(5+15i)+exp(i*theta)*(25+5i)=40+exp(i*gama)*(-10+20i)
how can I get theta and gama in matlab?
THANK YOU

Respuesta aceptada

Star Strider
Star Strider el 23 de Feb. de 2020
Try this:
syms theta gama
Eqn = exp(pi/4*i)*(5+15i)+exp(i*theta)*(25+5i) == 40+exp(i*gama)*(-10+20i);
[theta,gama] = vpasolve(Eqn, [theta,gama])
There are likely an infinity of solutions.
Here is one:
theta =
- 0.040930734767103408831012033619698 - 0.24192384707974160991614274286353i
gama =
0.19932582865736336790217825251885 - 0.085773888296270118753805499893846i

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by