boxprobt | R Documentation |
A box cumulative sum is defined as the cumulative sum over a lower left rectangle. This function is primarily for use when the components are point probabilities for the number of crossings C and the longest run L, then component (c,l) in the result is the probability P(C ≥ c, L ≤ l).
boxprobt(mtrx)
mtrx |
mpfr array |
mpfr array
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(boxprobt(mtrx3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.