Python 数据类型包括 uncertainty/error 吧?

Python datatype that includes uncertainty/error bars?

是否有包含数值误差线的 python 数据类型?

例如,

: a = 3.00 ± 0.100
: b = 4.00 ± 0.100
: b + a
>> 7.00 ± 0.141

哪里√(0.1^2 + 0.1^2) = 0.141

我想既然虚数已经以这样的形式存在 a= 3 + j4,也许还有一个模块可以为您处理错误分析。 (我想这很复杂,因为 + & - 不确定性不必相等。)

是的。有一个叫做不确定性的包。 安装它:sudo pip install uncertainties

示例:

        from uncertainties import ufloat_fromstr
        x = ufloat_fromstr("0.20+/-0.01")
        square = x**2
        print square

更多信息:https://pythonhosted.org/uncertainties/user_guide.html