Combine and stack arrays in columns in julia

后端 未结 0 691
悲哀的现实
悲哀的现实 2020-12-30 13:14

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         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题