optsim | R Documentation |
Perform optimal control simulation and evaluate the means and variances of the controlled and manipulated variables X and Y.
optsim(y, max.order = NULL, ns, q, r, noise = NULL, len, plot = TRUE)
y |
a multivariate time series. |
max.order |
upper limit of model order. Default is |
ns |
number of steps of simulation. |
q |
positive definite matrix |
r |
positive definite matrix |
noise |
noise. If not provided, Gaussian vector white noise with the
length |
len |
length of white noise record. |
plot |
logical. If |
trans |
first |
gamma |
gamma matrix. |
gain |
gain matrix. |
convar |
controlled variables |
manvar |
manipulated variables |
xmean |
mean of |
ymean |
mean of |
xvar |
variance of |
yvar |
variance of |
x2sum |
sum of |
y2sum |
sum of |
x2mean |
mean of |
y2mean |
mean of |
H.Akaike and T.Nakagawa (1988) Statistical Analysis and Control of Dynamic Systems. Kluwer Academic publishers.
# Multivariate Example Data
ar <- array(0, dim = c(3,3,2))
ar[, , 1] <- matrix(c(0.4, 0, 0.3,
0.2, -0.1, -0.5,
0.3, 0.1, 0), nrow = 3, ncol = 3, byrow = TRUE)
ar[, , 2] <- matrix(c(0, -0.3, 0.5,
0.7, -0.4, 1,
0, -0.5, 0.3), nrow = 3, ncol = 3, byrow = TRUE)
x <- matrix(rnorm(200*3), nrow = 200, ncol = 3)
y <- mfilter(x, ar, "recursive")
q.mat <- matrix(c(0.16,0,0,0.09), nrow = 2, ncol = 2)
r.mat <- as.matrix(0.001)
optsim(y, max.order = 10, ns = 20, q = q.mat, r = r.mat, len = 20)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.