A UGen that produces an arithmetic sequence of values.
If both start
and step
are of integer type (Int
or Long
),
this produces an integer output, otherwise it produces a floating point output.
E.g. ArithmSeq(start = 1, step = 2)
will produce a series 1, 3, 5, 7, ...
.
- Value Params
- length
the number of elements to output
- start
the first output element
- step
the amount added to each successive element
- Companion
- object