diff options
author | Suraj Yerramilli | 2015-06-07 19:08:50 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-06-07 19:08:50 +0530 |
commit | 2f8285c6291e12e7ffa8cd71e9738c7958afecdb (patch) | |
tree | 00b3f8d42fa0ba084f3ade570d5e33c2b0cf289f /man/sim.arx.Rd | |
parent | a00eafd068de773660a157794b98b4b99c5de4db (diff) | |
download | SysID-R-code-2f8285c6291e12e7ffa8cd71e9738c7958afecdb.tar.gz SysID-R-code-2f8285c6291e12e7ffa8cd71e9738c7958afecdb.tar.bz2 SysID-R-code-2f8285c6291e12e7ffa8cd71e9738c7958afecdb.zip |
Corrected errors and documenting sim.arx
Diffstat (limited to 'man/sim.arx.Rd')
-rw-r--r-- | man/sim.arx.Rd | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/man/sim.arx.Rd b/man/sim.arx.Rd new file mode 100644 index 0000000..848dd5f --- /dev/null +++ b/man/sim.arx.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2 (4.1.1): do not edit by hand +% Please edit documentation in R/sim.R +\name{sim.arx} +\alias{sim.arx} +\title{Simulate from an ARX Model} +\usage{ +\method{sim}{arx}(model, input, sigma = 0) +} +\arguments{ +\item{model}{an object of class \code{arx} containing the coefficients} + +\item{input}{a vector/matrix containing the input} + +\item{sigma}{standard deviation of the innovations (Default= \code{0})} +} +\value{ +a vector containing the output +} +\description{ +Simulate the response of an ARX system, given the input +} +\details{ +The routine is currently built only for SISO systems. Future Versions will +include support for MIMO systems +} +\examples{ +u <- rnorm(100,1) +model <- arx(A=c(1,-1.5,0.7),B=c(0.8,-0.25)) +y <- sim(model,u,sigma=3) +} +\seealso{ +\code{\link{arx}} for defining ARX models +} + |