RosettaCodeData/Task/Averages-Arithmetic-mean/MATLAB/averages-arithmetic-mean.m

4 lines
81 B
Mathematica
Raw Permalink Normal View History

2013-04-10 15:42:53 -07:00
function meanValue = findmean(setOfValues)
meanValue = mean(setOfValues);
end