Creates an array of length n and fills it with evenly distributed numbers in range [a, b].
The array length.
The minimum sequence value.
The maximum sequence value.
The array of numbers.
seq(3);// ⮕ [0, 0.5, 1]seq(4, -10, 2);// ⮕ [-10, -6, -2, 2] Copy
seq(3);// ⮕ [0, 0.5, 1]seq(4, -10, 2);// ⮕ [-10, -6, -2, 2]
Creates an array of length n and fills it with evenly distributed numbers in range [a, b].