ReduceArray3_v2 Op
There is a newer version of this op!
This version will not receive any updates. It is recommended to use a newer version.
Current version: Ops.Array.ReduceArray3_v3
Copies only every x point from an array
Summary (oneliner)
Creates a new array which contains every xth value triplet of the source array, e.g. when your source array is [x1, y1, z1, x2, y2, z2, x3, y3, z3]
and Every Xth Item
is set to 2
, the resulting array will be [x1, y1, z1, x3, y3, z3].
- Ops.Array.ReduceArray3_v2
- Core Op - Official cables op
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
No op example found on this server
INPUT PORTS
The source array
When set to 1
source and result array will be identical, when set to 2
result array contains half the number of items of the source array and so on
If set to anything other than 0
the resulting array will contain Max Index
value triplets at max
OUTPUT PORTS
The new array containing only a subset of elements