PartialSums - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


ListTools

  

PartialSums

  

return the partial sums of a list

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

PartialSums(L)

Parameters

L

-

list

Description

• 

The PartialSums(L) function returns a list of partial sums of the elements in list L.

Examples

> 

with⁡ListTools:

> 

PartialSums⁡a,b,c

a,a+b,a+b+c

(1)
> 

L≔1,2,3,4,5,6,7,8,9,10

L≔1,2,3,4,5,6,7,8,9,10

(2)
> 

PartialSums⁡L

1,3,6,10,15,21,28,36,45,55

(3)
> 

Digits≔2

Digits≔2

(4)
> 

PartialSums⁡seq⁡sin⁡1.0⁢i,i=0..13

0.,0.84,1.8,1.9,1.1,0.14,−0.14,0.52,1.5,1.9,1.4,0.4,−0.14,0.28

(5)

See Also

inline

list

ListTools

type[list]