R/SRM_COVFUN.R

Defines functions SRM_COVFUN

## File Name: SRM_COVFUN.R
## File Version: 0.06

SRM_COVFUN <- function(LAM, B, PHI, PSI, IB)
{
    W <- solve(IB - B)
    Wt <- t(W)
    val <- LAM %*% W %*% PHI %*% Wt %*% t(LAM)
    return(val)
}

Try the srm package in your browser

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

srm documentation built on Nov. 3, 2022, 5:06 p.m.