How to write a negative objective function for fmincon

10 次查看(过去 30 天)
Hello togehter,
I want to maximize the follwing objective funtion :(30x1+15x2)². Usually the objective function in Matlab wants to minimize. Therefore I tried to set the function as (-30x1-15x2)^2. But I always receive the error "Function definitions are not permitted in this context".
Could you please help me?

采纳的回答

Star Strider
Star Strider 2018-11-11
If that is actually the function you want to maximize, use an anonymous function as your objective function:
f = @(x) (30.*x(1) + 15*x(2)).^2;
xv = fmincon(@(x)-f(x), ... );
Note that this negates the evaluated result of the function call. If you negate within the expression, then square it, the result will always be positive.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by