SEQ

a = SEQ (xmin, xmax, count)

Returns an array with count elements of evenly spaced points between xmin and xmax. The spacing between the points is (xmax - xmin) / (n - 1).

Example

print SEQ(2,10,5)  'Output: [2,4,6,8,10]