Click or drag to resize

GenerateLinearRange(Double, Double, Double) Method

Generate a linearly spaced sample vector within the inclusive interval (start, stop) and the provide 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(
	double start,
	double step,
	double stop
)

Parameters

start  Double

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

step  Double

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

stop  Double

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

Return Value

Double

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

See Also