From 2f8285c6291e12e7ffa8cd71e9738c7958afecdb Mon Sep 17 00:00:00 2001 From: Suraj Yerramilli Date: Sun, 7 Jun 2015 19:08:50 +0530 Subject: Corrected errors and documenting sim.arx --- man/sim.arx.Rd | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 man/sim.arx.Rd (limited to 'man/sim.arx.Rd') 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 +} + -- cgit