Solve Nonlinear complex equation

조회 수: 2 (최근 30일)
Reza Lashani
Reza Lashani 2021년 6월 9일
댓글: Reza Lashani 2021년 6월 9일
Hello everybody How can I solve th equation below for X1 and X2 in MATLAB?
For more information, one of Ci's should be found by calcualtion and input in this equation other Ci's are known. Thank You for your help
  댓글 수: 4
Reza Lashani
Reza Lashani 2021년 6월 9일
No it has not three unknowns. It just has two unknowns all Ci's are pre-defined or pre-calculated.
Reza Lashani
Reza Lashani 2021년 6월 9일
This equation is a physical equation based on a mechanism. Obtained by vector loop method. It should have a meaningful answer.

댓글을 달려면 로그인하십시오.

답변 (1개)

David Hill
David Hill 2021년 6월 9일
syms c1 c2 c3 c4 c5 c6 x1 x2;
eqn=c1*exp(1i*x1)+c2*exp(1i*c3)-c4*exp(1i*c5)+x2*exp(1i*c6)==0;
a=solve(eqn,x1);
b=solve(eqn,x2);
  댓글 수: 2
John D'Errico
John D'Errico 2021년 6월 9일
Which does nothing, because it just solves for one of the unknowns as a function of the other.
Reza Lashani
Reza Lashani 2021년 6월 9일
Thanks David. But as John says it doesn't find the values of Xi's, just find the relation of X1 as a function of X2 and vice versa

댓글을 달려면 로그인하십시오.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by