summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical17.sce
blob: 520b09517a1b6efc9a3c6d97c53042e46a658769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Example with log objective function, inequality constraints

function y=fun(x)
       y = sum(log(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]';

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