summaryrefslogtreecommitdiff
path: root/tests/general_tests/fmincon/fmincon_logical19.sce
blob: 733e1ec1862c73c98089f5cc3dd314d8e2cba16a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Example with log objective function, inequality constraints and non linear constraints

function y=fun(x)
    y=sum(log(x))
endfunction

x0 = repmat(1,1,3);
lb = repmat(0,1,3);
ub = repmat(10,1,3);

A=[-1,-5,-3;];
b=[-100]';

function [c,ceq]=nlc(x)
c = [- 0.5*log(x(1)) - 2.5*log(x(2)) - 1.5*log(x(3)) + 50];
ceq = [];
endfunction

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