Compensated summation in sum?

Does Matlab use some algorithm such as compensated summation to reduce the roundoff error in sum?

 采纳的回答

Jan
Jan 2011-1-28

2 个投票

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).

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by