Nothing
## File Name: create.designMatrices.waldtest.R
## File Version: 0.07
# create design matrices for waldtest
create.designMatrices.waldtest <- function( pars, k )
{
NP <- length(pars)
Cdes <- matrix( 0, nrow=k, ncol=NP)
colnames(Cdes) <- pars
rdes <- rep(0,k)
res <- list( Cdes=Cdes, rdes=rdes )
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.