How to optimize a linear system of complex-valued equations
Show older comments
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 Comments
David Goodmanson
on 28 Oct 2020
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
on 28 Oct 2020
Trivial with your example:
a4, a8, a12 = 0,
Then x, y, z == 0 satisfied the linear system. Your cost is 0, the smallest possible.
Answers (0)
Categories
Find more on Automated Driving Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!