【python】reshape的使用

import numpy as np
x = np.array([1,2,3])
print(f'x.shape={x.shape}')
print(f'x.reshape((1,-1))={x.reshape((1,-1))}')
print(f'x.reshape(3,)={x.reshape(3,)}')
print(f'x.reshape(3,1)=\n{x.reshape(3,1)}')
print(f'x[:,np.newaxis]=\n{x[:,np.newaxis]}')

【python】reshape的使用_第1张图片

你可能感兴趣的:(python,numpy,机器学习)