np.random.random()和 np.random.random_sample()是一致的

网友投稿 924 2022-11-17

np.random.random()和 np.random.random_sample()是一致的

np.random.random()和 np.random.random_sample()是一致的

从官方文档上来看。我并没有发现​​np.random.random()​​​与​​np.random.random_sample()​​​在用法上有什么不同之处,所以它们两个在本质上都是一样的,随机给出设定的​​size​​​尺寸的位于​​[0,1)​​​半开半闭区间上的随机数。 代码如下:

# -*- coding: utf-8 -*-"""np.random.random()"""import numpy as npclass Debug: def __init__(self): self.sample = None self.sample1 = [] def mainProgram(self): np.random.seed(2) self.sample = np.random.random_sample(size=(2, 2)) self.sample1 = np.random.random((2, 2)) print("The value of sample is: ") print(self.sample) print("The value of sample1 is: ") print(self.sample1)if __name__ == '__main__': main = Debug() main.mainProgram()"""The value of sample is: [[0.4359949 0.02592623] [0.54966248 0.43532239]]The value of sample1 is: [[0.4203678 0.33033482] [0.20464863 0.61927097]]"""

此处均给出了尺寸为​​(2,2)​​的二维随机数数组。

如果大家觉得有用,请高抬贵手给一个赞让我上推荐让更多的人看到吧~

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:docker容器入门最佳教程
下一篇:微信小程序遇到的问题
相关文章

 发表评论

暂时没有评论,来抢沙发吧~