scipy.stats.sampling.NumericalInverseHermite.

set_random_state#

NumericalInverseHermite.set_random_state(random_state=None)#

设置底层均匀随机数生成器。

参数:
random_state{None, int,}

用于生成均匀随机数流的底层 NumPy 随机数生成器的 NumPy 随机数生成器或种子。如果 random_state 是 None(或 np.random),则使用 numpy.random.RandomState 单例。如果 random_state 是整数,则使用一个新的 RandomState 实例,并以 random_state 为种子。如果 random_state 已经是 GeneratorRandomState 实例,则使用该实例。