美文网首页
flipud,fliplr

flipud,fliplr

作者: snowpigppp | 来源:发表于2019-08-07 11:14 被阅读0次

    flipud

    将矩阵上下翻转

    >>> A = np.diag([1.0, 2, 3])
    >>> A
    array([[ 1.,  0.,  0.],
           [ 0.,  2.,  0.],
           [ 0.,  0.,  3.]])
    >>> np.flipud(A)
    array([[ 0.,  0.,  3.],
           [ 0.,  2.,  0.],
           [ 1.,  0.,  0.]])
    

    fliplr

    将矩阵左右翻转

    >>> A = np.diag([1.,2.,3.])
    >>> A
    array([[ 1.,  0.,  0.],
           [ 0.,  2.,  0.],
           [ 0.,  0.,  3.]])
    >>> np.fliplr(A)
    array([[ 0.,  0.,  1.],
           [ 0.,  2.,  0.],
           [ 3.,  0.,  0.]])
    

    相关文章

      网友评论

          本文标题:flipud,fliplr

          本文链接:https://www.haomeiwen.com/subject/iqxodctx.html