1. 程式人生 > >python np.tile用法

python np.tile用法

import os
import sys
import numpy as np


def test():
    x = np.tile([0,1], (3, 5))
    print(x)
    y = np.random.randn(64,3,7,7)
    print(y.shape)
    z = y[:,:,:,:, np.newaxis]
    print(z.shape)
    q = np.tile(z, (1, 1, 1, 1, 7))
    print(q.shape)
    print(q[:, :, :, :, 1] == q[:, :, :, :, 5])


if __name__ == "__main__":
    print('*'*80)
    test()
    pass

預設np.tile(引數1是要擴充的實體, 引數二是沿著某個方向進行擴充)

如果在某一個方向不需要擴充, 那麼那個維度上的數字就是1, 相當於沒有擴充,而不是0.\