原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.random.RandomState.tomaxint.html
校对:(虚位以待)
RandomState.
tomaxint
(size=None)0和sys.maxint
之间的随机整数,包括0和。
在区间[0,sys.maxint
]中返回均匀分布的随机整数的样本。
参数: | size:int或tuple的整数,可选
|
---|---|
返回: | out:ndarray
|
也可以看看
randint
random_integers
例子
>>> RS = np.random.mtrand.RandomState() # need a RandomState object
>>> RS.tomaxint((2,2,2))
array([[[1170048599, 1600360186],
[ 739731006, 1947757578]],
[[1871712945, 752307660],
[1601631370, 1479324245]]])
>>> import sys
>>> sys.maxint
2147483647
>>> RS.tomaxint((2,2,2)) < sys.maxint
array([[[ True, True],
[ True, True]],
[[ True, True],
[ True, True]]], dtype=bool)