scipy.stats.qmc.

scale#

scipy.stats.qmc.scale(sample, l_bounds, u_bounds, *, reverse=False)[源代码]#

将样本从单位超立方体缩放到不同的边界。

要将样本从 \([0, 1)\) 转换为 \([a, b), b>a\),其中 \(a\) 为下界,\(b\) 为上界。使用以下转换

\[(b - a) \cdot \text{sample} + a\]
参数:
samplearray_like (n, d)

要缩放的样本。

l_bounds, u_boundsarray_like (d,)

转换数据的下限和上限(分别为 \(a\)\(b\))。如果 reverse 为 True,则将原始数据范围转换为单位超立方体。

reversebool, optional

反转从不同边界到单位超立方体的转换。默认为 False。

返回:
samplearray_like (n, d)

缩放后的样本。

示例

将单位超立方体中的 3 个样本转换为边界

>>> from scipy.stats import qmc
>>> l_bounds = [-2, 0]
>>> u_bounds = [6, 5]
>>> sample = [[0.5 , 0.75],
...           [0.5 , 0.5],
...           [0.75, 0.25]]
>>> sample_scaled = qmc.scale(sample, l_bounds, u_bounds)
>>> sample_scaled
array([[2.  , 3.75],
       [2.  , 2.5 ],
       [4.  , 1.25]])

并转换回单位超立方体

>>> sample_ = qmc.scale(sample_scaled, l_bounds, u_bounds, reverse=True)
>>> sample_
array([[0.5 , 0.75],
       [0.5 , 0.5 ],
       [0.75, 0.25]])