summaryrefslogtreecommitdiff
path: root/man/impulseest.Rd
blob: 98e336546f21e539ee052ee296a4531dbcfe7474 (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
27
28
29
30
31
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/impulse.R
\name{impulseest}
\alias{impulseest}
\title{Estimate Impulse Response Models}
\usage{
impulseest(data, M = 30, K = 0)
}
\arguments{
\item{data}{an object of class \code{idframe}}

\item{M}{Order of the FIR Model (Default:\code{30})}

\item{K}{Transport delay in the estimated impulse response
(Default:\code{0})}
}
\description{
\code{impulseest} is used to estimate impulse response models in the
given data
}
\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)
plot(fit)
}
\seealso{
\code{\link{step}}
}