Package com.imsl.math
Interface NelderMead.Function
- Enclosing class:
- NelderMead
public static interface NelderMead.Function
Public interface for the user-supplied function to evaluate the objective
function of the minimization problem.
-
Method Summary
Modifier and TypeMethodDescriptiondoublef(double[] x) Public interface for the user-supplied function to evaluate the objective function of the minimization problem.
-
Method Details
-
f
double f(double[] x) Public interface for the user-supplied function to evaluate the objective function of the minimization problem.- Parameters:
x- adoublearray containing the point at which the function is to be evaluated.x.length = n- Returns:
- a
double, the value of the objective at pointx.
-