Изменение линейного массива на 2d массив в numpy - PullRequest
0 голосов
/ 12 марта 2019
I have an array x=[1,2,3,4,5] with shape
print(x.shape)
Output : (5,)

I want to change it to (5,1) i.e 5 rows and 1 column

Примечание: x.reshape (-1,1) не работает

...