Click or drag to resize

RungeKuttaExplicitBaseGetSolutionPointsVolatileForStepSize(Double) Method

Gets volatile solution points for constant step size. The method has to be initialized (see Initialize(Double, Double, ActionDouble, Double, Double)) before.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual IEnumerable<(double X, double[] )> GetSolutionPointsVolatileForStepSize(
	double stepSize
)

Parameters

stepSize  Double
Size of a step.

Return Value

IEnumerableValueTupleDouble, Double
Endless sequence of solution points. You have to consume the values immediately because the content of the y array is changed in the further course of the evaluation.
See Also