Package com.imsl.math
Interface MinConGenLin.Function
- All Known Subinterfaces:
MinConGenLin.Gradient
- Enclosing class:
- MinConGenLin
public static interface MinConGenLin.Function
Public interface for the user-supplied function to evaluate the function to be minimized.
-
Method Summary
Modifier and TypeMethodDescriptiondoublef(double[] x) Public interface for the function to be minimized.
-
Method Details
-
f
double f(double[] x) Public interface for the function to be minimized.- Parameters:
x- adoublearray, the point at which the function is evaluated.x.lengthequals the number of variables.- Returns:
- a
doublescalar, the function value atx
-