Home | Trees | Indices | Help |
|
---|
|
object --+ | Fsum
Precision floating point summation similar to standard Python function math.fsum.
Unlike math.fsum, this class accumulates the values to be added incrementally and provides intermediate, precision summations. Accumulation may continue after intermediate summations.
Note: Exception and non-finite handling differ from math.fsum.
See Also: Hettinger, Klein, Kahan, Python 2.6+ file Modules/mathmodule.c and the issue log Full precision summation.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
Properties | |
Inherited from |
Method Details |
Initialize a new accumulator with one or more start values.
|
Accumulate more values from positional arguments.
|
Multiple the current, partial sum by a factor.
|
Accumulated more values from positional arguments and sum all.
Note: Accumulation can continue after summation. |
Accumulated more values from the iterable and sum all.
Note: Accumulation can continue after summation. |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Sep 25 16:25:29 2018 | http://epydoc.sourceforge.net |