Previous Up Next

6.3.24  Sum of elements of a list

The sum or add command adds the elements of a list or sequence of numbers.

Example

sum(2,3,4,5,6)
     
20           

Previous Up Next