Package com.imsl.math
Interface MinUnconMultiVar.Hessian
- All Superinterfaces:
MinUnconMultiVar.Function,MinUnconMultiVar.Gradient
- Enclosing class:
- MinUnconMultiVar
Public interface for the user supplied Hessian to the
MinUnconMultiVar object.-
Method Summary
Modifier and TypeMethodDescriptionvoidhessian(double[] x, double[][] hess) Public interface for the Hessian of the multivariate function to be minimized.Methods inherited from interface com.imsl.math.MinUnconMultiVar.Function
fMethods inherited from interface com.imsl.math.MinUnconMultiVar.Gradient
gradient
-
Method Details
-
hessian
void hessian(double[] x, double[][] hess) Public interface for the Hessian of the multivariate function to be minimized.- Parameters:
x- adoublearray, the point at which the Hessian of the function is to be evaluatedhess- adoublematrix, the value of the Hessian of the function at x
-