No BSD License
-
S=test(x)
Edgar & Himmelblau, 1988
-
[stepsize,xo,Ot,nS]=aurea(S,x...
Performs line search procedure for unconstrained optimization
-
[stepsize,xo,Ot,nS]=coggins(S...
Performs line search procedure for unconstrained optimization
-
[x1,x2,nS]=bracket(S,x0,d,pro...
Bracket the minimum (or maximum) of the objective function
-
[xo,Ot,nS]=powell(S,x0,ip,met...
Unconstrained optimization using Powell.
-
powell_run.m
-
View all files
|
|
| S=test(x)
|
function S=test(x)
% Edgar & Himmelblau, 1988
% x0 = [1, 2]'
% xo = [0, 0]'
% S(xo) = 0
S=4*x(1).^2-2.*x(1).*x(2)+x(2).^2;
|
|
Contact us at files@mathworks.com