summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical15.sce
blob: a95cf8d012390361a6073f32ae5fcee65d76050f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Example with objective function, inequality constraints and non linear constraints

function y=fun(x)
       y = -prod(exp(x))
endfunction

x0 = repmat(1,1,20);
lb = repmat(0,1,20);

A=[-1,-5,-3 repmat(0,1,17); -0.5,-2.5 -1.5 repmat(0,1,17);];
b=[-100 -50]';

//Nonlinear constraints
function [c,ceq]=nlc(x)
    c = [ sum(2*exp(x)) + 1];
    ceq = [];
endfunction

[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,A,b,[],[],lb,[],nlc)