|
FiniteDifferencesHessian Method (FuncDouble, Double, Int32)
|
Obtains the Hessian function for a multidimensional function.
Namespace:
Accord.Math.Differentiation
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static Func<double[], double[][]> Hessian(
Func<double[], double> function,
int variables
)
Public Shared Function Hessian (
function As Func(Of Double(), Double),
variables As Integer
) As Func(Of Double(), Double()())
Request Example
View SourceParameters
- function
- Type: SystemFuncDouble, Double
The function to be differentiated. - variables
- Type: SystemInt32
The number of parameters for the function.
Return Value
Type:
FuncDouble,
DoubleThe gradient function of the given
function.
See Also