How to write syntax for ga(GA) when we put constraints on the objective function?

1 次查看(过去 30 天)
min f(x)=1.10471*x1^2*x2 + 0.04811*x3*x4(14+x2) f(x)<=6
subject to some inequality constraints
Then how to get the variables only when the min f(x) is less than equal to 6.

回答(1 个)

Matt J
Matt J 2022-3-7
编辑:Matt J 2022-3-7
In your nonlcon function
function [c,ceq]=nonlcon(x)
ceq=[];
c=f(x)-6;
end

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by