Filter löschen
Filter löschen

I would like to get the average of some data only if the sample size is larger than two.

1 Ansicht (letzte 30 Tage)
Hello,
I would like to get the average of some data only if the size of the sample is larger than two. So, if the sample size is smaller or equal to two, then it will not average. Thanks in advance.

Akzeptierte Antwort

the cyclist
the cyclist am 2 Feb. 2017
if numel(x) > 2
mean_x = mean(x);
end

Weitere Antworten (1)

Image Analyst
Image Analyst am 2 Feb. 2017
Don't worry about it. The average of one value is the same as the value. This code works for any array of any size:
theAverage = mean(yourArray(:))
It's not really worth the extra lines of code to have it do it only in the case of 2 or more elements. Why bother? Really.

Kategorien

Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by