| ccolmv | R Documentation | 
Computes the colwise means or variances of a matrix - internal use
ccolmv(X,compute_var=FALSE)
X | 
 matrix of type:   | 
compute_var | 
 boolean, defines whether the colwise variances rather than the means will be returned  | 
Numeric Vector of colwise means or variances of X
X <- matrix(rnorm(1000*500),1000,500)
means <- ccolmv(X)
vars <- ccolmv(X,compute_var=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.