### ============================================================================
### rowCumprods
###
### ----------------------------------------------------------------------------
### Non-exported methods
###
.DelayedMatrix_block_rowCumprods <- function(x, rows = NULL, cols = NULL,
..., useNames = TRUE) {
# Check input type
stopifnot(is(x, "DelayedMatrix"))
DelayedArray:::.get_ans_type(x, must.be.numeric = TRUE)
# Subset
x <- ..subset(x, rows, cols)
# Compute result
val <- rowblock_APPLY(x = x,
FUN = rowCumprods,
...,
useNames = useNames)
if (length(val) == 0L) {
return(numeric(ncol(x)))
}
val <- do.call(rbind, val)
if (!useNames) {
val <- unname(val)
}
val
}
### ----------------------------------------------------------------------------
### Exported methods
###
# ------------------------------------------------------------------------------
# General method
#
#' @inherit MatrixGenerics::rowCumprods
#' @importMethodsFrom DelayedArray seed
#' @rdname colCummaxs
#' @export
#' @examples
#'
#' # Only use rows 2-4
#' rowCumprods(dm_Matrix, rows = 2:4)
setMethod("rowCumprods", "DelayedMatrix",
function(x, rows = NULL, cols = NULL,
force_block_processing = FALSE, ..., useNames = TRUE) {
.smart_seed_dispatcher(x, generic = MatrixGenerics::rowCumprods,
blockfun = .DelayedMatrix_block_rowCumprods,
force_block_processing = force_block_processing,
rows = rows,
cols = cols,
...,
useNames = useNames)
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.