summaryrefslogtreecommitdiff
path: root/tests/mime-detection/mysum.m
blob: 1c6305d0d602c2970ec9d6f1b4c3db57226cb748 (plain)
1
2
3
4
5
6
7
8
function m=myavg(x)
% MYAVG(X) Calculates the average of the elements
n=length(x);
mysum=0;
for i=1:n
  mysum=mysum+x(i)
end
m=mysum/n;