i had an array of size 2000(8bit)
i want to extract bit 1 and bit0 of the even data of the array, (for example, array[0],array[2], array [4],etc... )and store them to a output1[]
then extract bit 5 and bit4 of the odd data of the array, (for example, array[1],array[3], array [5],etc... )and store them to a output2[]
then finally, extract bit 7and bit6 of the odd data of the array, (for example, array[1],array[3], array [5],etc... )and store them to a output3[]
i'm trying to use the formula node to implement it, however, facing some problems when using the formula node.
1. how to declare an array in the formula node?
2. how to set the output of the formula node to an array?
thks,lyn