I am trying to combine two 1D arrays and stack them in columns,
a = [1 2 3] b = [4 5 6] # such that, they produce a b c = [1 4 2 5 3 6] # th