Whats the easy/efficient way of interleaving three data sets..
Data1 = [<<5>>,<<6>>,<<7>>],
Data2 = [<<5>>,<<6>>,<<7>>],
Data3 = [<<5>>,<<6>>,<<7>>].
End Result:
Final = [<<5>>, <<5>>, <<5>>, <<6>>, <<6>>, <<6>>, <<7>>, <<7>>, <<7>>]
Im sure its like
[X || X <- [Data1, Data2, Data3]]
Module function:
Same in shell:
And of course you can do it with
listsmodule: