Compensated summation in sum?

16 views (last 30 days)
Andrew Newell
Andrew Newell on 28 Jan 2011
Does Matlab use some algorithm such as compensated summation to reduce the roundoff error in sum?

Accepted Answer

Jan
Jan on 28 Jan 2011
There is no compensation in Matlab's SUM. For small arrays (there was a limit at 88999 elements, but this might change with the Matlab release) the sum is computed directly. For bigger arrays the sum is divided in parts and distributed over different threads.
If you need a compensated sum, try:
This offers a Kahan-compensation, Knuth's method with intermediate 128 and 192 bit precision, an 80bit accumulator and Knuth with 160 bits (the last two are not supported by all compilers and platforms).

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!