R/scovmat.R

Defines functions scovmat

Documented in scovmat

scovmat <- function(object,expForm=TRUE,seed=NULL,
                    nsim=100,verbose=TRUE) {
#
# Simulated covariance matrix; i.e. an estimate of the covariance
# matrix of the parmeter estimates obtained via simulation.
#
    M   <- simference(object=object,expForm=expForm,seed=seed,
                      nsim=nsim,verbose=verbose)
    ccc <- var(M)
    attr(ccc,"seed") <- attr(M,"seed")
    ccc
}

Try the hmm.discnp package in your browser

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

hmm.discnp documentation built on Sept. 26, 2022, 5:05 p.m.