R/fix.theta.R

fix.theta <-
function (theta, Q) 
{
    M <- t(theta) %*% Q %*% theta
    eM <- eigen(M, symmetric = TRUE)
    scale(theta %*% eM$vectors, FALSE, sqrt(eM$values))
}

Try the mda package in your browser

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

mda documentation built on July 9, 2023, 7:14 p.m.