Python の NumPy でランダムな数をつくる
2023.02.18
Python の NumPy でランダムな数をつくるには、random
パッケージを使って
import numpy as np
samples = np.random.rand(5)
print(samples) # [0.83847674 0.7640038 0.63745803 0.44610966 0.6058369 ]
print(type(samples)) # <class 'numpy.ndarray'>
とします。引数は個数を意味し、0 と 1 の間にある実数が出てきます。