summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical25.sce
blob: bc94124f4ba09e0157e0bb1c144c02d5ace896c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Example with objective function and inequality constraints
function y=fun(x)
    y=sum(1/(cos(x)))
endfunction

x0 = [repmat(1,1,3)];
A=[-1,-5,-3;];
b=[-100]';
lb = repmat(0,1,3);
ub = repmat(10,1,3);

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