summaryrefslogtreecommitdiff
path: root/man/impulseest.Rd
blob: 0eddac7a7054359eb410a9a621946afb7bf9d12e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/nonparam.R
\name{impulseest}
\alias{impulseest}
\title{Estimate Impulse Response Coefficients}
\usage{
impulseest(x, M = 30, K = NULL, regul = F, lambda = 1)
}
\arguments{
\item{x}{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:NULL)}

\item{regul}{Parameter indicating whether regularization should be
used. (Default:\code{FALSE})}

\item{lambda}{The value of the regularization parameter. Valid only if
\code{regul=TRUE}. (Default:\code{1})}
}
\description{
\code{impulseest} is used to estimate impulse response coefficients from
the data
}
\details{
The IR Coefficients are estimated using linear least squares. Future
Versions will provide support for multivariate 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)
}
\references{
Arun K. Tangirala (2015), \emph{Principles of System Identification:
Theory and Practice}, CRC Press, Boca Raton. Sections 17.4.11 and 20.2
}
\seealso{
\code{\link{step}}
}