本文介绍了大负数的指数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Python上计算数字,例如np.exp(-28000)?答案大约是5E-12161.有人告诉我,由于采用双精度浮点格式,所以我只能计算> 1e-2048
How does one compute a number such as np.exp(-28000) on Python? The answer is around 5E-12161. I've been told that due to the double-precision floating point format, I would only be able to calculate a number > 1e-2048
推荐答案
尝试使用十进制模块.
Decimal(math.exp(1))**-28000
这篇关于大负数的指数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!