summaryrefslogtreecommitdiff
path: root/man/sim.arx.Rd
diff options
context:
space:
mode:
authorSuraj Yerramilli2015-09-06 21:05:28 +0530
committerSuraj Yerramilli2015-09-06 21:05:28 +0530
commitd408cf729e21eefc52bb128308384f63ec879321 (patch)
tree196f7ed7143d2ccc4c65ffc142be1eab35863fbb /man/sim.arx.Rd
parentf98d594eb37c21a8865439d2abcdb9055dad43a5 (diff)
downloadSysID-R-code-d408cf729e21eefc52bb128308384f63ec879321.tar.gz
SysID-R-code-d408cf729e21eefc52bb128308384f63ec879321.tar.bz2
SysID-R-code-d408cf729e21eefc52bb128308384f63ec879321.zip
Simplifying sim functions
Diffstat (limited to 'man/sim.arx.Rd')
-rw-r--r--man/sim.arx.Rd36
1 files changed, 0 insertions, 36 deletions
diff --git a/man/sim.arx.Rd b/man/sim.arx.Rd
deleted file mode 100644
index 0f23d7d..0000000
--- a/man/sim.arx.Rd
+++ /dev/null
@@ -1,36 +0,0 @@
-% 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, seed = NULL)
-}
-\arguments{
-\item{model}{an object of class \code{arx} containing the coefficients}
-
-\item{input}{a vector/matrix/idframe containing the input}
-
-\item{sigma}{standard deviation of the innovations (Default= \code{0})}
-
-\item{seed}{integer indicating the seed value of the random number generator}
-}
-\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(200,sd=1)
-model <- arx(A=c(1,-1.5,0.7),B=c(0.8,-0.25),ioDelay=1)
-y <- sim(model,u,sigma=0.1)
-}
-\seealso{
-\code{\link{arx}} for defining ARX models
-}
-