Nothing
SimulateDMQ <- function(iT, vQ_0, vTau, iTau_star, vPn,
ScalingType = "InvSqrt", fSim = NULL) {
if(is.null(fSim)) {
fSim = Sim_C
}
dBeta = vPn["beta"]
dAlpha = vPn["alpha"]
dGamma = vPn["gamma"]
dPhi = vPn["phi"]
vVar = Variances(vTau, iTau_star)
lSim = Simulate_DMQ_C(iT, vTau, vQ_0, fSim, iTau_star, dBeta, dAlpha,
dGamma, dPhi, ScalingType, vVar)
vY = lSim$vY
mQ = t(lSim$mQ)
lOut = list(vY = vY,
mQ = mQ)
return(lOut)
}
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.