How to optimize a linear system of complex-valued equations
이전 댓글 표시
Hello everyone
I have a linear system of complex-valued equations as follows
ax + by = c
dx + ey = f
where a,b,c,d,e, and f are complex-valeued coefficients and x and y are my complex-valued unkonwns. I intend to conduct an algorithm like genetic algorithm to optimize "a" and "e" to get the optimized (min for example) value of "y". Would you please help me how I can manage to do this? thanks in advance for your time devoted to this question.
댓글 수: 5
David Goodmanson
2020년 10월 28일
Hi QD
by the 'minimum value of y' do you mean the minimum for abs(y)? If so, you set
a = dc/f, x = f/d and y = 0 [1]
then the two equations reduce to
c = c
f = f
So [1] is a solution that minimizes abs(y). No optimization with e is necessary,
Bruno Luong
2020년 10월 28일
Trivial with your example:
a4, a8, a12 = 0,
Then x, y, z == 0 satisfied the linear system. Your cost is 0, the smallest possible.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Automated Driving Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!