

   CCuummuullaattiivvee SSuummss,, PPrroodduuccttss,, eettcc..

        cumsum(x)
        cumprod(x)
        cummax(x)
        cummin(x)

   VVaalluuee::

        A vector with the same length of `x', but whose ele-
        ments are the cumulative sums, products, minima or max-
        ima of those in `x'.  An `NA' value in `x' will the
        corresponding and following elements of the value to be
        `NA'.

   EExxaammpplleess::

        cumsum(1:10)
        cumprod(1:10)
        cummin(c(3:1,2:0,4:2))
        cummax(c(3:1,2:0,4:2))

