R/2.3.2.1.main.R

Defines functions fitThetaCovarGLSC

fitThetaCovarGLSC <- function(fitTheta, sigmaThetaExprList, derivativesExprList, fit) {
  thetaList <- as.list(fitTheta$optim$par)
  derivSigmaThetaList <- evalDerivSigmaThetaExprList(derivativesExprList, sigmaThetaExprList, thetaList)
  derivVechMatrix <- getDerivVechMatrix(derivSigmaThetaList)

  UMatrix <- getUMatrix(fit)

  covTheta <- getCovTheta(derivVechMatrix, UMatrix, fit)

  return(covTheta)
}

Try the Mmcsd package in your browser

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

Mmcsd documentation built on March 31, 2023, 7:23 p.m.