diff options
Diffstat (limited to 'man/armax.Rd')
-rw-r--r-- | man/armax.Rd | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/man/armax.Rd b/man/armax.Rd index 56cc18b..06bc17f 100644 --- a/man/armax.Rd +++ b/man/armax.Rd @@ -47,10 +47,11 @@ The data is expected to have no offsets or trends. They can be removed using the \code{\link{detrend}} function. } \examples{ -data(arxsim) -model <- armax(data,c(1,2,1,2)) -summary(model) # obtain estimates and their covariances -plot(model) # plot the predicted and actual responses +data(armaxsim) +z <- dataSlice(data,end=1533) # training set +mod_armax <- armax(z,c(1,2,1,2)) +summary(mod_armax) # obtain estimates and their covariances +plot(mod_armax) # plot the predicted and actual responses } \references{ Arun K. Tangirala (2015), \emph{Principles of System Identification: |