impulseest {sysid} | R Documentation |
Estimate Impulse Response Coefficients
Description
impulseest
is used to estimate impulse response coefficients from
the data
Usage
impulseest(x, M = 30, K = NULL, regul = F, lambda = 1)
Arguments
x |
an object of class |
M |
Order of the FIR Model (Default: |
K |
Transport delay in the estimated impulse response (Default:NULL) |
regul |
Parameter indicating whether regularization should be
used. (Default: |
lambda |
The value of the regularization parameter. Valid only if
|
Details
The IR Coefficients are estimated using linear least squares. Future Versions will provide support for multivariate data.
References
Arun K. Tangirala (2015), Principles of System Identification: Theory and Practice, CRC Press, Boca Raton. Sections 17.4.11 and 20.2
See Also
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)
impulseplot(fit)
[Package sysid version 1.0.4 Index]