|  | LagrangianFunctionHessianWithRespectToX Method | 
            Calcuates the Hessian matrix with respect to x.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleMatrix HessianWithRespectToX(
	DoubleVector lambda,
	DoubleVector x
)
Public Function HessianWithRespectToX ( 
	lambda As DoubleVector,
	x As DoubleVector
) As DoubleMatrix
public:
DoubleMatrix^ HessianWithRespectToX(
	DoubleVector^ lambda, 
	DoubleVector^ x
)
member HessianWithRespectToX : 
        lambda : DoubleVector * 
        x : DoubleVector -> DoubleMatrix Parameters
- lambda  DoubleVector
- The value of lambda.
- x  DoubleVector
- The point at which to evaluate the Hessian.
Return Value
DoubleMatrixA matrix containing the Hessian.
 See Also
See Also