diff options
author | Suraj Yerramilli | 2016-05-15 19:04:00 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-05-15 19:04:00 +0530 |
commit | 310ec170df8b3a593c3ac1c4be1a4526fa07f8ef (patch) | |
tree | 02df9749dacccf320cccc1645133b9398efc7171 /man | |
parent | b7bbfddf0a00603dbe5f0adf902f6563069adce6 (diff) | |
download | SysID-R-code-310ec170df8b3a593c3ac1c4be1a4526fa07f8ef.tar.gz SysID-R-code-310ec170df8b3a593c3ac1c4be1a4526fa07f8ef.tar.bz2 SysID-R-code-310ec170df8b3a593c3ac1c4be1a4526fa07f8ef.zip |
correcting objects used in documentation examples
Diffstat (limited to 'man')
-rw-r--r-- | man/armax.Rd | 2 | ||||
-rw-r--r-- | man/arx.Rd | 2 | ||||
-rw-r--r-- | man/bj.Rd | 2 | ||||
-rw-r--r-- | man/oe.Rd | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/man/armax.Rd b/man/armax.Rd index 8e86575..18310d7 100644 --- a/man/armax.Rd +++ b/man/armax.Rd @@ -59,7 +59,7 @@ using the \code{\link{detrend}} function. } \examples{ data(armaxsim) -z <- dataSlice(data,end=1533) # training set +z <- dataSlice(armaxsim,end=1533) # training set mod_armax <- armax(z,c(1,2,1,2)) mod_armax @@ -55,7 +55,7 @@ order to be zero. } \examples{ data(arxsim) -model <- arx(data,c(2,1,1)) +model <- arx(arxsim,c(2,1,1)) model plot(model) # plot the predicted and actual responses @@ -72,7 +72,7 @@ using the \code{\link{detrend}} function. } \examples{ data(bjsim) -z <- dataSlice(data,end=1500) # training set +z <- dataSlice(bjsim,end=1500) # training set mod_bj <- bj(z,c(2,1,1,1,2)) mod_bj residplot(mod_bj) # residual plots @@ -56,7 +56,7 @@ using the \code{\link{detrend}} function. } \examples{ data(oesim) -z <- dataSlice(data,end=1533) # training set +z <- dataSlice(oesim,end=1533) # training set mod_oe <- oe(z,c(2,1,2)) mod_oe plot(mod_oe) # plot the predicted and actual responses |