how to solve this complex equation in matlab?

조회 수: 41 (최근 30일)
peng peng
peng peng 2020년 2월 23일
답변: Star Strider 2020년 2월 23일
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

채택된 답변

Star Strider
Star Strider 2020년 2월 23일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by