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')
答案 0 :(得分:1)
此特定情况下的问题与mpmath
的{{3}}太低有关。 prec
的默认值为
>>> mpmath.mp.prec
53
当我将其设置为100
时,我得到了我期待的结果:
>>> 1 + mpmath.erf(-5.922)
mpf('5.5236667058718205581661131647751e-17')
在这种情况下,速度差异并不明显,但请注意,提高精度通常会增加计算结果所需的时间。