How to optimize a linear system of complex-valued equations
Mostrar comentarios más antiguos
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 comentarios
David Goodmanson
el 28 de Oct. de 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
el 28 de Oct. de 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.
Respuestas (0)
Categorías
Más información sobre Automated Driving Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!