summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical12.sce
blob: 325cd2ca139343426c9021fc8e3e0bb401f7a51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
    // Example with objective function and inequality constraints
function y=fun(x)
    k=1
    y=0
    for i = 1:20
       y = y + exp(x(i)) 
    end
endfunction
x0 = [repmat(1,1,20)];
A=[-1,-5,-3 repmat(0,1,17); -0.5,-2.5 -1.5 repmat(0,1,17);];
b=[-100 -50]';
lb = repmat(0,1,20);
k = 0
[xopt,fopt,exitflag,output,lambda,gradient,hessian] = fmincon (fun, x0,A,b,[],[],lb,[])