cumsummcol {crossrun}R Documentation

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

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))

[Package crossrun version 0.1.1 Index]