Skip to content

Slice Array

Ryan Porter edited this page Feb 12, 2017 · 1 revision

sliceArray

This node creates an output array from a slice of the input array.

Attribute Name Description Attribute Type
input (i) Input values doubleArray
start (st) Index in the input array from which to start the slice. If start is negative, the slice will start that many indices from the end of the input array. int
stop(sp) Index in the input array at which to end the slice. If stop is negative, the slice will end that many indices from end of the input array. int
step (ss) Stride of each step of the slice. If step is 1, every index from start to stop will be returned. Step may not be 0. int
output (o) An array containing the values sliced from the input array. doubleArray
Clone this wiki locally