Calculator Function RefrenceFunction Reference >Calculator Function Reference >Statistics>AverageAverageThe average, ave(), computes the average of all the parameters passed either as a list or number. Any lists passed will have their elements summed and added to the total sum before sum is averaged.
ave(1,2,3)=2 ave({1,2,3})=2 ave(1,2,{3,4,5})=3 |