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.3179.0 (4.8.3179.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 the values.
count  Int64  (Optional)
The number of values to generate. If you leave this parameter out, the sequence is not bounded.

Return Value

IEnumerableDouble

[Missing <returns> documentation for "M:Altaxo.Calc.Ode.OdeMethodOptions.GetEquidistantSequence(System.Double,System.Double,System.Int64)"]

See Also