How to write a negative objective function for fmincon

10 views (last 30 days)
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?

Accepted Answer

Star Strider
Star Strider on 11 Nov 2018
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.

More Answers (0)

Categories

Find more on Get Started with MATLAB 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!