R/mlnormal_update_beta_GLS.R

Defines functions mlnormal_update_beta_GLS

## File Name: mlnormal_update_beta_GLS.R
## File Version: 0.05



mlnormal_update_beta_GLS <- function( XVX, XVY, control_beta)
{
    XVX <- mlnormal_covmat_add_ridge( covmat=XVX, eps=control_beta$ridge )
    beta <- solve(XVX, XVY )
    return(beta)
}

Try the LAM package in your browser

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

LAM documentation built on May 18, 2022, 5:17 p.m.