码迷,mamicode.com
首页 > 其他好文 > 详细

np.stack

时间:2020-05-19 16:33:54      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:div   sha   random   pre   randn   axis   python   range   dom   

np.stack 沿着新的轴加入一系列的数组

>>> arrays = [np.random.randn(3, 4) for _ in range(10)]
    >>> np.stack(arrays, axis=0).shape
    (10, 3, 4)

    >>> np.stack(arrays, axis=1).shape
    (3, 10, 4)

    >>> np.stack(arrays, axis=2).shape
    (3, 4, 10)

    >>> a = np.array([1, 2, 3])
    >>> b = np.array([2, 3, 4])
    >>> np.stack((a, b))
    array([[1, 2, 3],
           [2, 3, 4]])

    >>> np.stack((a, b), axis=-1)
    array([[1, 2],
           [2, 3],
           [3, 4]])

  

np.stack

标签:div   sha   random   pre   randn   axis   python   range   dom   

原文地址:https://www.cnblogs.com/lyl0618/p/12917556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!