scipy.special.round#
- scipy.special.round(x, out=None) = <ufunc 'round'>#
四舍五入到最近的整数。
返回最接近 x 的整数。如果 x 精确地以 0.5 结尾,则选择最接近的偶数整数。
- 参数:
- xarray_like
实数值输入。
- outndarray,可选
函数结果的可选输出数组。
- 返回:
- 标量或 ndarray
最接近 x 元素值的整数。结果是浮点类型,而不是整数类型。
示例
>>> import scipy.special as sc
它四舍五入为偶数。
>>> sc.round([0.5, 1.5]) array([0., 2.])