How to shift data like attached image ?
Hey @V0id_scuy,
i’m assuming you are looking for a way to do so programmatically - otherwise the Reorder CHOP comes to mind.
Programmatically use a Shuffle CHOP to “Sequence All Channels”. Since you most likely want to cycle through the channels, append a Extend CHOP and set the Behaviour
parameters to “Cycle”. From here add a Shift CHOP and use the Scroll Offset
Parameter to move the samples around. Finally add a Shuffle and use “Split All Samples” as the Method
. A Rename CHOP will help with reseting the names to what it was before.
For the particular example given (a single channel has a value of 1) you could also make use of Fan CHOPs, first “Fan In” and converting the 4 input channels into an index, then adding 1 via a Math CHOP and finally another Fan CHOP set to “Fan Out”.
Hope this helps
Markus
Thanks a lot. extend and shift combination is what i want !!