Nothing
fgls.update.univ <-
function(am,v,mmat,dyad.explist,evec,ipkminv)
# fgls.update()
# fgls estimate of siga given oldsiga to estimate V
# Univariate version
{
bmvm <- mmat %*% v %*% mmat
bmvminv <- ginv(bmvm)
bkinv <- kronecker(bmvminv,bmvminv)
omegainv <- ipkminv %*% bkinv
xtom <- t(dyad.explist$emat) %*% omegainv
xtomx <- xtom %*% dyad.explist$emat
xtomxi <- solve(xtomx)
xtomy <- xtom %*% evec
siga <- xtomxi %*% xtomy
cat("siga fgls:\n")
print(siga)
outlist <- list(siga=siga,vsiga=xtomxi)
return(outlist)
}
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.