list.delace
Delace, de-interleave a list. (similar to zl.delace)
list.delace(input): [out1, out2]
Arguments:
Arguments
Name | Type | Default | Description |
---|---|---|---|
input | list | The input least that will be de-interleaved. |
Returns
Name | Type | Description |
---|---|---|
out1 | list | A new list made up of the values at the even indices of the input list (zero-based). So an input list of |
out2 | list | A new list made up of the values at the odd indices of the input list (zero-based). So an input list of |