NonLP_Rosenbrock
(无约束最小值求解建议统一使用NonLP_Fminsearch函数)Rosenbrock求无约束多维极值问题,返回最优点和最优值。
范例(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_Nelder
范例(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_Hooke_Jeeves
范例(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_Rosenbrock
范例(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…