Clear Filters
Clear Filters

Arithmetical mean above max

2 views (last 30 days)
Claire
Claire on 16 Aug 2013
Is it possible that, due to precision matter, arithmetical mean of an array is above max of same array ?
Is Matlab then limiting mean to min-max interval (at least for display) ?
Regards Claire
  1 Comment
Image Analyst
Image Analyst on 18 Aug 2013
I doubt it - have you actually observed this? If so, what is the code?

Sign in to comment.

Answers (3)

David Sanchez
David Sanchez on 16 Aug 2013
The mean value ( either geometric or arithmetic ) of an array can never be above the maximum value of the array. Matlab does not have to limit the result of the operation.

Claire
Claire on 16 Aug 2013
Is there no case where precision can produce some error as
mean = 1.000000012
max = 1.00
  1 Comment
David Sanchez
David Sanchez on 16 Aug 2013
I don't know of any case. However, if dealing with very small numbers, the result will be prone to some error. In any case, achieving an average of a set above the maximum value of that set, (beside being against its definition) is extremely unlikely even when working with very small numbers.

Sign in to comment.


Jan
Jan on 17 Aug 2013
Edited: Jan on 17 Aug 2013
Matlab's mean(x) uses the calculation sum(x) / numel(x). Therefore it suffers from the numerical instabilities of sum:
x = [1e17, 1, -1e17]
sum(x)
This replies 0 instead of 1, because the limited floating point precision does not allow to distinguish 1e17 and 1e17+1. This means, that in sum() small values can vanish, when they are surrounded by large numbers with different sign, and of course this matters partial sums also. But this cannot lead to the situation, that the sum is larger than numel(x)*max(x), except if you reach the overflow such that sum() replies Inf. Then sum(x)/n differs from sum(x/n).
v = [realmax, realmax]
mean(v)
(What does this reply? I cannot check this currently.)
So perhaps this would be a better implementation of MEAN:
function m = meanX(x)
m = sum(x) / numel(x);
if ~isfinite(m)
m = sum(x / numel(x));
end
A furter effect appears for large arrays, when Matlab distributes the partial sums to different threads. Then the floating point effects depend on the number of cores also, but here the sum cannot exceed numel(x)*max(x) also, except for the above mentioned exception.
See FEX: XSum for a summation with higher accuracy.
  2 Comments
Image Analyst
Image Analyst on 18 Aug 2013
v = [realmax, realmax]
mean(v)
says "ans = inf".
Jan
Jan on 18 Aug 2013
Thanks, Image Analyst.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!