Learn R Programming

cpgen (version 0.1)

ccolmv: Colwise means or variances

Description

Computes the colwise means or variances of a matrix - internal use

Usage

ccolmv(X,compute_var=FALSE)

Arguments

X
matrix of type: matrix or dgCMatrix
compute_var
boolean, defines whether the colwise variances rather than the means will be returned

Value

Numeric Vector of colwise means or variances of X

Examples

Run this code

X <- matrix(rnorm(1000*500),1000,500)
means <- ccolmv(X)
vars <- ccolmv(X,compute_var=TRUE)

Run the code above in your browser using DataLab