Click or drag to resize

GenerateLinearRange(Int32, Int32, Int32) Method

Generate a linearly spaced sample vector within the inclusive interval (start, stop) and the provided step. The start value is aways included as first value, but stop is only included if it stop-start is a multiple of step. Equivalent to MATLAB double colon operator (::).

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] LinearRange(
	int start,
	int step,
	int stop
)

Parameters

start  Int32

[Missing <param name="start"/> documentation for "M:Altaxo.Calc.Generate.LinearRange(System.Int32,System.Int32,System.Int32)"]

step  Int32

[Missing <param name="step"/> documentation for "M:Altaxo.Calc.Generate.LinearRange(System.Int32,System.Int32,System.Int32)"]

stop  Int32

[Missing <param name="stop"/> documentation for "M:Altaxo.Calc.Generate.LinearRange(System.Int32,System.Int32,System.Int32)"]

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Calc.Generate.LinearRange(System.Int32,System.Int32,System.Int32)"]

See Also