Error using GA in MATLAB for nonlinear constrained optimization
1 次查看(过去 30 天)
显示 更早的评论
I am using GA in MATLAB to minimize a convex function. I am getting the following error,
Error using constrValidate (line 59)
Constraint function must return real value.
But when in the cost.m the system called "sys" is created (which is a global variable), then the constr function computes its H_\infty norm which is a real value. Still I don't understand why I am getting this error.
My codes are attached.
Any help is really appreciated.
Thanks
0 个评论
采纳的回答
Walter Roberson
2018-3-24
constr.m is receiving an empty sys which leads to hinfnorm warning and returning infinity.
sys is empty because it is a global variable that has not been initialized.
sys has not been initialized at that point because the cost function has not yet been called.
It is permitted for ga to invoke the constraint function before the cost function, as ga wants to be sure that the proposed points are valid before bothering to calculate their cost.
Your cost function needs to calculate sys as well.
If you have a more recent version, you could consider moving the calculation of sys into a function with k as input, and memoizing the function, https://www.mathworks.com/help/matlab/ref/memoize.html
2 个评论
Walter Roberson
2018-3-24
A+Kbar (which is A+diag(k) where k is the random input) has positive eigenvalues, which makes it an unstable dynamic matrix -- if left to run long enough, some parts of the system would go infinite.
You need to take into account that ga can call the nonlinear constraint function in any order compared to the cost function. The cost function is not being called exclusively with values that pass the nonlinear constraints first -- and sometimes the cost function is run even if the nonlinear constraint function has rejected the value (it happens for the very first call at least.)
更多回答(1 个)
Sebastian Castro
2018-3-23
Pretty sure it's because hinfnorm can return an Inf value if the input system is unstable...
So you're going to have to handle that case and, as the error message said, return a real (or finite) number. Easiest thing is probably to limit the value of your constraint function to some really large value, keeping in mind that the optimizer just needs to keep this value <= 0.
- Sebastian
3 个评论
Sebastian Castro
2018-3-24
Hmm... then maybe some of those input variables (c or gamma2) are returning complex numbers.
Have you tried putting a breakpoint in your function and seeing what comes out?
- Sebastian
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!