R/mgsem_ginv.R

Defines functions mgsem_ginv

## File Name: mgsem_ginv.R
## File Version: 0.04

mgsem_ginv <- function(X)
{
    requireNamespace('MASS')
    res <- MASS::ginv(X=X)
    rownames(res) <- colnames(res) <- colnames(X)
    return(res)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.