码迷,mamicode.com
首页 > 其他好文 > 详细

numpy.random.randint

时间:2017-08-19 12:50:53      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:默认   numpy   dom   nbsp   style   one   rand   div   class   

low、high、size三个参数。默认high是None,如果只有low,那范围就是[0,low)。如果有high,范围就是[low,high)。

>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0])

>>> np.random.randint(1, size=10)
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])

>>> np.random.randint(5, size=(2, 4))
array([[4, 0, 2, 1],
       [3, 2, 2, 0]])

 

numpy.random.randint

标签:默认   numpy   dom   nbsp   style   one   rand   div   class   

原文地址:http://www.cnblogs.com/ymjyqsx/p/7395685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!