Click or drag to resize

OdeMethodOptionsGetEquidistantSequence Method

Gets an equidistant sequence that can be used, e.g. for OptionalSolutionPoints or MandatorySolutionPoints.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static IEnumerable<double> GetEquidistantSequence(
	double start,
	double step,
	long count = 9223372036854775807
)

Parameters

start  Double
The first value of the sequence.
step  Double
The difference between consecutive values.
count  Int64  (Optional)
The number of values to generate. If you leave this parameter out, the sequence is unbounded.

Return Value

IEnumerableDouble
An enumerable that yields the generated sequence.
See Also