乱数一覧
乱数
python標準ライブラリのrandomモジュールの関数などを使い乱数を生成できる
必要なライブラリー
import numpy as np
一覧
import numpy as np
random.random()
-0以上1未満の浮動小数点数
-size:(1,)
np.random.random()
出力
0.06403549481552051
radnom.uniform(a,b,(x,y))
-任意の範囲の浮動小数点数(a-bの範囲)
-size:(x,y)
np.random.uniform(0,100,(2,2))
#範囲:0-100
#size:(2,2)
出力
array([[54.96297308, 57.53909851],
[37.99840957, 46.24128482]])
radom.randint(a,b,(x,y))
-任意の範囲の整数型を出力(a-bの範囲)
-size:(x,y)
np.random.randint(0,100,(2,2))
出力
array([[25, 52],
[54, 92]])
random.normal(loc=a,scale=b,size=(x,y))
-loc:平均
-scale:標準偏差
-size:(x,y)
の浮動小数点数を出力
np.random.normal(0,1,(2,2))
出力
array([[-1.5370704 , -0.47114166],
[-0.18402346, 1.60225269]])
Author And Source
この問題について(乱数一覧), 我々は、より多くの情報をここで見つけました https://qiita.com/takechiyoswimmer/items/278784abb0f27461f913著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .