语法如下:
import math
result = math.ulp(x)
其中,x 是一个浮点数。
例如,如果你有一个浮点数 3.0,想要获取其最小有效比特位,可以这样写:
import math
result = math.ulp(3.0)
print(result)
这将输出 2.220446049250313e-16。这表示在浮点数 3.0 的附近,两个相邻的可表示浮点数之间的最小差异为 2.220446049250313e-16。
转载请注明出处:http://www.zyzy.cn/article/detail/398/Python3