我想廣播數組給予fashion.I現在瓷磚()功能在numpy可用於廣播我試過了,但無法生成所需的輸出。如何使用Numpy的瓷磚功能要得到這個結果
input=[ [1,2],
[3,4],
[4,5] ] #shape(3X2)
numpy.tile(input,----)
out put= [ [ [1,2],
[1,2]
],
[ [3,4],
[3,4]
],
[ [4,5],
[4,5],
]
] #shape(3,2,2)
感謝,這也是解決 –
再次Thanks.Perfect –