crossrun (version 0.1.0)

cumsummcol: Column-Wise Cumulative Sums

Description

Column-wise cumulative sums in mpfr array.

Usage

cumsummcol(mtrx)

Arguments

mtrx

mpfr two-dimensional array.

Value

mpfr array with column-wise cumulative sums, same dimension as the original array.

Examples

Run this code
# NOT RUN {
nill <- Rmpfr::mpfr(0, 120)
one <- Rmpfr::mpfr(1, 120)
two <- Rmpfr::mpfr(2, 120)
contents <- c(one,nill,nill, one,one,one, two,two,two)
mtrx3 <- Rmpfr::mpfr2array(contents, dim = c(3, 3))
print(mtrx3)
print(cumsummcol(mtrx3))
# }

Run the code above in your browser using DataLab