PureData CEAMMC web documentation

PureData CEAMMC library web documentation

View on GitHub

Distribution download

index :: list

list.unzip

aliases: [list.deinterleave]

splits list to N lists, each to separate output

available since version: 0.1


information

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]

example

arguments:

properties:

inlets:

outlets:

keywords:

list

See also: [list.zip]

Authors: Alex Nadzharov, Serge Poltavsky

License: GPL3 or later