我是否遇到过mpmath浮点精度的限制?

时间:2015-10-01 20:59:54

标签: python floating-point precision mpmath

mpmath旨在支持"任意精度浮点运算。"

然而。 。

>>> import mpmath
>>> 1 + mpmath.erf(-5.921)
mpf('1.1102230246251565e-16')
>>> 1 + mpmath.erf(-5.922)  # I expect a smaller positive number here.
mpf('0.0')

我错过了什么吗?或者这是mpmath的基本限制?

@jonrsharpe建议问题是我已向float提交了erf。但是,下面的代码表明这不是问题:

>>> 1 + mpmath.erf(mpmath.mpf('-5.922'))
mpf('0.0')

1 个答案:

答案 0 :(得分:1)

此特定情况下的问题与mpmath的{​​{3}}太低有关。 prec的默认值为

>>> mpmath.mp.prec
53

当我将其设置为100时,我得到了我期待的结果:

>>> 1 + mpmath.erf(-5.922)
mpf('5.5236667058718205581661131647751e-17')

在这种情况下,速度差异并不明显,但请注意,提高精度通常会增加计算结果所需的时间。