NonLP_Fminbnd
一维最小值搜索,求解模型如下: min fun(x)
范例(t):
目标:
function obj(x);
begin
return a^2-5*a+8;
End;
A := 1 ;//下界;
B := 7;//上界;
methods …
非线性规划
  线性规划问题,其目标函数和约束条件都是自变量的一次函数。但是还有一类问题:其目标函数或约束条件中含有非线性函数,我们称这样的规划问题为非线性规划。
  非线性规划问题远比线性规划问题复杂…
Prog_L
范例(t):
[Code]
f := array(-2,-3);
a := array((1,2),(4,0),(0,4)); //二维数组
b := array(-2,6,2);   …
Prog_Q
范例(t):
[Code]
H:= array((2,0),(0,2));    //二次项
f := array(-8,-10);      //一次项
A := arr…
Prog_N
范例(t):
[code]
Function UndefineFunc149();
Begin
{线性不等式约束
  x[0]+x[1] <= 3;
  4*x[0]+x[1]<=9 …
Prog_M
范例(t):
[code]
Function UndefineFunc147();//主函数
Begin
  goal := array(1,1) ;// 目标约束
  wight :=…
NonLP_Fminsearch
范例(t):
[code]
Function UndefineFunc150();
Begin
x0 := array(1,1) ;//初始值;
methods :=3;//
Return…
NonLP_Fminbnd
范例(t):
目标:
function obj(x);
begin
return a^2-5*a+8;
End;
A := 1 ;//下界;
B := 7;//上界;
methods …
NonLP_Range
范例(t):
目标:
[code]
function obj(x);
begin

return 3*x[0]^2+x[1]^2-2*x[0]*x[1]+4*x[0]+3*x[1];
e…
NonLP_BSearch
范例(t):
目标:
[code]
function obj(x);
begin

return 3*x[0]^2+x[1]^2-2*x[0]*x[1]+4*x[0]+3*x[1];
e…
NonLP_Golden
范例(t):
//目标函数
function obj(x);
begin
return a^2-5*a+8;
End;

求解最小值:
[code]
A…
NonLP_Fibonacci
范例(t):
//目标函数
function obj(x);
begin
return a^2-5*a+8;
End;

求解最小值:
[code]
A…
NonLP_GP
范例(t):
//目标函数
function obj(x);
begin
return a^2-5*a+8;
End;

求解最小值:
[code]
A…