Concatenate two numpy arrays in the 4th dimension

后端 未结 6 1420
一生所求
一生所求 2020-12-14 06:59

I have two numpy arrays with three dimensions (3 x 4 x 5) and I want to concatenate them so the result has four dimensions (3 x 4 x 5 x 2). In Matlab, this can be done with

6条回答
  •  天涯浪人
    2020-12-14 07:46

    This works for me:

     c = numpy.array([a,b])
    

    Though it would be nice if it worked your way, too.

提交回复
热议问题