GenerateLinearRangeInt32(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.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static int[] LinearRangeInt32(
int start,
int stop
)
Parameters
- start Int32
- The start value of the range.
- stop Int32
- The end value of the range.
Return Value
Int32The generated sample vector.
See Also