Click or drag to resize

EndCriteriaCheckStationaryHessian Method

Check if hessian function changed by less than the hessian epsilon

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool CheckStationaryHessian(
	double gold,
	double gnew
)

Parameters

gold  Double

[Missing <param name="gold"/> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryHessian(System.Double,System.Double)"]

gnew  Double

[Missing <param name="gnew"/> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryHessian(System.Double,System.Double)"]

Return Value

Boolean

[Missing <returns> documentation for "M:Altaxo.Calc.Optimization.EndCriteria.CheckStationaryHessian(System.Double,System.Double)"]

Remarks
If the change in hessian function is less than the hessian epsilon then a possible stationary point has been found. If the number of repeated iterations at this possible stationary point is greater than the maximum iterations at a station point then the ending criteria is set to CriteriaType.StationaryPoint and the function returns true;
See Also