PureData CEAMMC library web documentation
aliases: [list.deinterleave]
available since version: 0.1
For N = 2 and list elements [1 2 3 4] we get [1 3] on output 1 and [2 4] on output 2. If input value is [1 2 3 4 5] the output depends on split method. If @min method used, output is [1 3 5] and [2 4]. If @pad method used with value X, output if [1 3 5] and [2 4 X]
@method
Get/set split method if number element in the input list is not multiple of number of
outputs
type: symbol
enum: min, pad
default: min
@min
Get/set alias to @method min. No padding used
type: alias
@pad
Get/set padding value. Pads result lists with specified value, if number of elements in
the input list is not multiple of number of outputs
type: atom
default: 0
See also: [list.zip]
Authors: Alex Nadzharov, Serge Poltavsky
License: GPL3 or later