Array Split

Splits the array into Nth arrays of fixed size.

example 1

with an input array [A,B,C,D,E,F,G,H,I,J] and output-size=4 and nb-outputs=3

  • out1 = [A,B,C,D]
  • out2 = [E,F,G,H]
  • out3 = [I,J,A,B] (input is wrapped around)

example 2

with an input array [A,B] and output-size=3 and nb-outputs=2

  • out1 = [A,B,A]
  • out2 = [B,A,B]

Settings

bypass

Bypasses the module.

array in

Array input flow(s).

array out

Array output flow(s).

output size

Size of output arrays.

nb outputs

Number of outputs.

See also

version 6.0.240115

Edit All Pages