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

4 lines
81 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function meanValue = findmean(setOfValues)
meanValue = mean(setOfValues);
end