「NumPy」通常の乱数配列を作るサンプル
書式
import numpy as np
np.random.rand(個数)
乱数の配列を作るには、random.rand() 関数を使います。
引数には作りたい乱数 (0.0 ~ 1.0) の個数を渡します。
使用例
import numpy as np #X軸:乱数の配列 x = np.random.rand(5) #Y軸:乱数の配列 y = np.random.rand(5) print(x)
実行結果
[0.87153687 0.77527662 0.50006379 0.30803634 0.44258771]