Click or drag to resize

RungeKuttaExplicitBaseGetSolutionPointsVolatile Method

Gets a sequence of solution points using the settings in the argument. The y-values in the returned tuple are intended for immediate consumption, because the content of the array will change during subsequent evaluations.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public virtual IEnumerable<(double X, double[] )> GetSolutionPointsVolatile(
	OdeMethodOptions options
)

Parameters

options  OdeMethodOptions
The evaluation options, see OdeMethodOptions.

Return Value

IEnumerableValueTupleDouble, Double
Tuple of the current x and y values. The y-values are intended for immediate consumption, because the content of the array will change during subsequent evaluations.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if the method was not initialized.
See Also