当前位置:主页 > 软件编程 > Python代码 >

python增加矩阵维度的实例讲解

时间:2022-09-02 09:19:19 | 栏目:Python代码 | 点击:

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)

您可能感兴趣的文章:

相关文章