Click or drag to resize

RungeKuttaExplicitBaseEnumerateXForFixedStepSize Method

Enumerates the endless sequence x_current + k * stepSize, for k=1..Infinity.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected IEnumerable<double> EnumerateXForFixedStepSize(
	double x_current,
	double stepSize
)

Parameters

x_current  Double
The base value.
stepSize  Double
The step size.

Return Value

IEnumerableDouble
The endless sequence x_current + k * stepSize, for k=1..Infinity.
See Also