Skip to main content

arange

lq.arange(start, end, step=1)

Generates an array of numbers spaced by step in the interval [start, end).

Parameters

start : int | float

Start of the range.

end : int | float

End of the range (excluded).

step : int | float    default: 1

Difference between consecutive values.