summaryrefslogtreecommitdiff
path: root/man/sim.Rd
diff options
context:
space:
mode:
authorSuraj Yerramilli2015-11-05 23:44:49 +0530
committerSuraj Yerramilli2015-11-05 23:44:49 +0530
commit55c427e131fb0b8022e397474c48af73966bec88 (patch)
treefbb83ea37cb63a11f5ea77f0c48c5c27e505a154 /man/sim.Rd
parent0fbb1f8b2aaa8595faf6df95f87401ba7a9aa654 (diff)
downloadSysID-R-code-55c427e131fb0b8022e397474c48af73966bec88.tar.gz
SysID-R-code-55c427e131fb0b8022e397474c48af73966bec88.tar.bz2
SysID-R-code-55c427e131fb0b8022e397474c48af73966bec88.zip
updating documentation
Diffstat (limited to 'man/sim.Rd')
-rw-r--r--man/sim.Rd31
1 files changed, 31 insertions, 0 deletions
diff --git a/man/sim.Rd b/man/sim.Rd
new file mode 100644
index 0000000..562b656
--- /dev/null
+++ b/man/sim.Rd
@@ -0,0 +1,31 @@
+% Generated by roxygen2 (4.1.1): do not edit by hand
+% Please edit documentation in R/sim.R
+\name{sim}
+\alias{sim}
+\title{Simulate dynamic system}
+\usage{
+sim(model, input, sigma = 0, seed = NULL)
+}
+\arguments{
+\item{model}{the system model to simulate}
+
+\item{input}{a vector/matrix 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 a system given the input
+}
+\details{
+The routine is currently built only for SISO systems. Future Versions will
+include support for MIMO systems. Current support
+}
+\seealso{
+\code{\link{sim.idpoly}} for simulating polynomial models
+}
+