summaryrefslogtreecommitdiff
path: root/man/idpoly.Rd
diff options
context:
space:
mode:
Diffstat (limited to 'man/idpoly.Rd')
-rw-r--r--man/idpoly.Rd11
1 files changed, 6 insertions, 5 deletions
diff --git a/man/idpoly.Rd b/man/idpoly.Rd
index 98f0036..3f82594 100644
--- a/man/idpoly.Rd
+++ b/man/idpoly.Rd
@@ -1,4 +1,4 @@
-% Generated by roxygen2 (4.1.1): do not edit by hand
+% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/poly.R
\name{idpoly}
\alias{idpoly}
@@ -9,10 +9,10 @@ idpoly(A = 1, B = 1, C = 1, D = 1, F1 = 1, ioDelay = 0, Ts = 1)
\arguments{
\item{A}{Autoregressive coefficients}
-\item{B,F1}{Coefficients of the numerator and denominator respectively
+\item{B, F1}{Coefficients of the numerator and denominator respectively
of the deterministic model between the input and output}
-\item{C,D}{Coefficients of the numerator and denominator respectively
+\item{C, D}{Coefficients of the numerator and denominator respectively
of the stochastic model}
\item{ioDelay}{the delay in the input-output channel}
@@ -25,8 +25,8 @@ Creates a polynomial model with identifiable coefficients
\details{
Discrete-time polynomials are of the form
\deqn{
- A(q^{-1}) y[k] = \frac{B(q^{-1})}{F1(q^{-1})} u[k] +
- \frac{C(q^{-1})}{D(q^{-1})} e[k]
+ A(q^{-1}) y[k] = \frac{B(q^{-1})}{F1(q^{-1})} u[k] +
+ \frac{C(q^{-1})}{D(q^{-1})} e[k]
}
}
\examples{
@@ -39,5 +39,6 @@ C <- c(1,-0.3)
D <- c(1,1.5,0.7)
F1 <- c(1,-0.5)
mod_bj <- idpoly(1,B,C,D,F1,ioDelay=1)
+
}