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)
}

Try the CDM package in your browser

Any scripts or data that you put into this service are public.

CDM documentation built on Aug. 25, 2022, 5:08 p.m.