summaryrefslogtreecommitdiff
path: root/man/step.Rd
blob: a4c547d67adbf570a903b5c2aae6bffbf8d4432e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/nonparam.R
\name{step}
\alias{step}
\title{Step Response Plots}
\usage{
step(model)
}
\arguments{
\item{model}{an object of class \code{impulseest}}
}
\description{
Plots the step response of a system, given the IR model
}
\examples{
uk <- rnorm(1000,1)
yk <- filter (uk,c(0.9,-0.4),method="recursive") + rnorm(1000,1)
data <- idframe(output=data.frame(yk),input=data.frame(uk))
fit <- impulseest(data)
step(fit) 

}
\seealso{
\code{\link{impulseest}}
}