The boolean used to indicate whether or not to compute the Hessian and gradient at the initial estimates.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual bool HessianOption { get; set; }
Visual Basic (Declaration)
Public Overridable Property HessianOption As Boolean
Visual C++
public:
virtual property bool HessianOption {
	bool get ();
	void set (bool value);
}

Field Value

A boolean specifying whether or not the Hessian and gradient are to be computed at the initial estimates.

Default: The Hessian and gradient are not computed at the initial estimates.

Remarks

HessianOption equal to true indicates that the Hessian and gradient are to be computed. If HessianOption is true the user must set the initial estimates via the SetInitialEstimates method.

See Also