1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// 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);
intcon=[1,2];
function [c,ceq]=nlc(x)
c = [ -sum((sin(x)).^2 + (cos(x)).^2) + 1.5];
ceq = [];
endfunction
// Optimal Solution Found.
// hessian =
// 0. 0. 0. 0. 0. 0. 0. 0. 0.
// gradient =
// 0. 0. 0.
// exitflag =
// 0
// fopt =
// 3.
// x0pt =
// 4115.
// 519.
// 52357.435
[x0pt,fopt,exitflag,gradient,hessian] = intfmincon(fun,x0,intcon,A,b,[],[],lb,[],nlc)
|