numpy.random.SeedSequence.generate_state#
方法
- random.SeedSequence.generate_state(n_words, dtype=np.uint32)#
返回用于PRNG种子的请求单词数.
BitGenerator 应在构造函数中使用适当的 n_words 参数调用此方法,以正确地进行自我种子设定.
- 参数:
- n_wordsint
- dtypenp.uint32 或 np.uint64, 可选
每个单词的大小.这应该只能是 uint32 或 uint64.字符串(’uint32’,`’uint64’)也是可以的.注意,请求 `uint64 将比 uint32 为相同的 n_words 绘制多两倍的位数.这是为了方便以 uint64 数组表示其状态的
BitGenerator
.
- 返回:
- stateuint32 或 uint64 数组,形状=(n_words,)