Click or drag to resize

GenerateLinearRange(Int32, Int32) Method

Generate a linearly spaced sample vector within the inclusive interval (start, stop) and step 1. Equivalent to MATLAB colon operator (:).

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

Parameters

start  Int32
The start value of the range.
stop  Int32
The end value of the range.

Return Value

Double
The generated sample vector.
See Also