python怎么增加矩阵维度
1个回答
展开全部
numpy.expand_dims(a, axis)
Examples- >>> x = np.array([1,2])
- >>> x.shape
- (2,)
- >>> y = np.expand_dims(x, axis=0)
- >>> y
- array([[1, 2]])
- >>> y.shape
- (1, 2)
- >>> y = np.expand_dims(x, axis=1) # Equivalent to x[:,newaxis]
- >>> y
- array([[1],
- [2]])
- >>> y.shape
- (2, 1)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询