Click or drag to resize

RungeKuttaExplicitBaseGetSolutionPointsForStepSize(Double) Method

Gets solution points for constant step size. Returns the same results as GetSolutionPointsVolatileForStepSize(Double, Double, ActionDouble, Double, Double, Double), but the returned solution point already contains a copy of the y array.

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[] )> GetSolutionPointsForStepSize(
	double stepSize
)

Parameters

stepSize  Double
Size of a step.

Return Value

IEnumerableValueTupleDouble, Double
Endless sequence of solution points. It is safe to store the returned y array permanently.
See Also