How to solve large linear complex equations

조회 수: 5 (최근 30일)
Shengfan Bi
Shengfan Bi 2023년 12월 6일
댓글: Matt J 2023년 12월 6일
The equations are of the following form:
,
where is known.
“Subsitituting into ,we can obtain 14 linear complex equations. By solving 28 linear equations, we can determine the values for .”
How do I solve the imaginary part and the real part
I plan to use the lsqnonlin function for solving, but there are too many unknowns and defining them with syms becomes cumbersome. Is there a better way to solve this problem?

채택된 답변

Matt J
Matt J 2023년 12월 6일
편집: Dyuman Joshi 2023년 12월 6일
Since it is a linear and unconstrained system of equations, just use mldivide, \
  댓글 수: 4
Shengfan Bi
Shengfan Bi 2023년 12월 6일
Thank you for your response. Here is my code where I separate the imaginary and real parts for computation.
syms phi_delta_real [14 1] real %Declaration
eqns_real=real(sum(conj(phi_delta_real)./(delta_i-2*delta_i).^2))+real(1./delta_i.^2-phi_delta_real);%Objective equation
vars=phi_delta_real;
[A,b] = equationsToMatrix(eqns_real,vars);
x=linsolve(A,b);%Linear solution
Matt J
Matt J 2023년 12월 6일
Here is my code where I separate the imaginary and real parts for computation.
I'm not sure you need to do that, but regardless, if your question is now resolved, please Accept-click the Answer.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by