summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical32.sce
blob: 3684613488d936b021da3f30416c124710de97b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Example with objective function and inequality constraints
function y=fun(x)
    y=sum(sin(x))
endfunction

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

//Nonlinear constraints
function [c,ceq]=nlc(x)
    c = [ sum(exp(x)./log(x)) - 10];
    ceq = [];
endfunction

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