R/cdm_matrix2.R

Defines functions cdm_matrix2

Documented in cdm_matrix2

## File Name: cdm_matrix2.R
## File Version: 0.03

cdm_matrix2 <- function( x, nrow )
{
    x <- as.vector(x)
    y <- matrix( x, nrow=nrow, ncol=length(x), byrow=TRUE )
    return(y)
}
alexanderrobitzsch/CDM documentation built on July 3, 2024, 7:42 p.m.