Legacy Documentation

Mathematica® Teacher's Edition (2002)

This is documentation for an obsolete product.
Current products and services
 Documentation /  Mathematica Teacher's Edition /  Built-in Functions /  Programming /  Functional Programming /

FoldList

FilledSmallSquare FoldList[f, x, a, b, ... ] gives x, f[x, a], f[f[x, a], b], ... .

FilledSmallSquare Example: FoldList[f, x, a, b, c]LongRightArrow.
FilledSmallSquare FoldList[Plus, 0, list] generates cumulative sums of the elements in list.
FilledSmallSquare Example: FoldList[Plus, 0, a, b, c]LongRightArrow.
FilledSmallSquare With a length list, FoldList generates a list of length .
FilledSmallSquare The head of list in FoldList[f, x, list] need not be List.
FilledSmallSquare See The Mathematica Book on the web: Section 2.2.2.
FilledSmallSquare See also: Fold, NestList, ComposeList, Partition.