Skip to contents

The function extracts the estimated drift matrix and process noise from the fitted model.

Usage

ThetaHat(fit)

Arguments

fit

R object. Output of the FitDynr(), FitMx(), IllustrationFitDynr(), or IllustrationFitMx(), functions.

See also

Examples

if (FALSE) { # \dontrun{
set.seed(42)
library(dynr)
sim <- GenData(n = 50)
data <- RandomMeasurement(sim)
fit <- FitDynr(data)
ThetaHat(fit)
} # }