I have a 1D array, and I would like to split it into two. i.e first array will contain index(0,2,4,6,8....). Second array will contain index(1,3,5,7...). I am trying to avoid a for or while loop, but finding it difficult to figure it out just with the array functions.
Thanks for any suggestion.