我最近一直在尝试模拟一些蒙特卡洛斯模拟,并遇到了numpy.random
. 检查指数生成器的文档我注意到这是页面中的警告,它告诉我们
Generator.exponential 应该用于新代码。
尽管这样,numpy.random.exponential
仍然有效,但我无法运行Generator
对应的。我收到以下错误:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-14-c4cc7e61aa98> in <module>
----> 1 np.random.Generator.exponential(2, 1000)
TypeError: descriptor 'exponential' for 'numpy.random._generator.Generator' objects doesn't apply to a 'int' object
我的问题是:
这2个有什么区别?
如何生成样本Generator
?
交互式爱情
相关分类