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

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

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