Click or drag to resize

MultiStepMethodBaseEnumerationForwardToGreaterThanOrEqual Method

Moves enumerator so that the current element is greater than or equal to the provided x value.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
protected static double? EnumerationForwardToGreaterThanOrEqual(
	ref IEnumerator<double>?? enumerator,
	double x
)

Parameters

enumerator  IEnumeratorDouble
The enumerator. If the enumerator no longer has any elements, this reference is set to .
x  Double
The x value.

Return Value

NullableDouble
The current element that is greater than or equal to the provided x value, or if the enumeration has run out of elements.
See Also