「NumPy」np.tile()で繰り返し並べた新たなndarrayを生成する
環境
PyCharm 2021.3
Python 3.9.7
構文
1.一次元配列の生成
np.arange(数字)
2.np.tile(配列名,繰り返す数)
np.tile()の第一引数に元のndarray、第二引数に繰り返す数を指定する。
新たな配列が返され、元の配列自体は変更されない。
使用例
import numpy as np cft = np.arange(5) print("元の配列の要素") print(cft) #引数1 ndarray 引数2 繰り返す数 restile = np.tile(cft, 2) print("新たな配列の要素") print(restile)
実行結果
元の配列の要素 [0 1 2 3 4] 新たな配列の要素 [0 1 2 3 4 0 1 2 3 4]