Nothing
      ## File Name: gdina_proc_uls_inverse_matrices.R
## File Version: 0.01
gdina_proc_uls_inverse_matrices <- function(Mj, J)
{
    invM.list <- list( 1:J )
    for (jj in 1:J){
        Mjjj <- Mj[[jj]][[1]]
        invM.list[[jj]] <- solve( crossprod(Mjjj) )
    }
    return(invM.list)
}
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.