cumsum {gmp} | R Documentation |
Theses functions overload cumsum and prod function for big rationals and big integers
cumsum.bigz(...) cumsum.bigq(...) prod(...)
... |
an element of class bigz or bigq. |
return an element of class bigz or bigq.
Antoine Lucas
x = as.bigz(1:12) cumsum(x) prod(x) x = as.bigq(1:12) cumsum(x) prod(x)