Calculator Function RefrenceFunction Reference >Calculator Function Reference >Statistics>SumSumThe sum computes the sum 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.
sum(1,2,3)=6 sum({1,2,3})=6 sum(1,2,{3,4,5})=15 |