summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/armax.Rd11
-rw-r--r--man/bj.Rd3
-rw-r--r--man/oe.Rd5
3 files changed, 14 insertions, 5 deletions
diff --git a/man/armax.Rd b/man/armax.Rd
index b9939d8..5bb880a 100644
--- a/man/armax.Rd
+++ b/man/armax.Rd
@@ -4,16 +4,19 @@
\alias{armax}
\title{Estimate ARMAX Models}
\usage{
-armax(x, order = c(0, 1, 1, 0), options = optimOptions())
+armax(x, order = c(0, 1, 1, 0), init_sys = NULL, options = optimOptions())
}
\arguments{
\item{x}{an object of class \code{idframe}}
-\item{options}{Estimation Options, setup using \code{\link{optimOptions}}}
-
-\item{order:}{Specification of the orders: the four integer components
+\item{order}{Specification of the orders: the four integer components
(na,nb,nc,nk) are the order of polynolnomial A, order of polynomial B
+ 1, order of the polynomial C,and the input-output delay respectively}
+
+\item{init_sys}{Linear polynomial model that configures the initial parameterization.
+Must be an ARMAX model. Overrules the \code{order} argument}
+
+\item{options}{Estimation Options, setup using \code{\link{optimOptions}}}
}
\value{
An object of class \code{estpoly} containing the following elements:
diff --git a/man/bj.Rd b/man/bj.Rd
index 30d2702..563a761 100644
--- a/man/bj.Rd
+++ b/man/bj.Rd
@@ -14,6 +14,9 @@ bj(z, order = c(1, 1, 1, 1, 0), init_sys = NULL, options = optimOptions())
order of the polynomial D, order of the polynomial F, and the
input-output delay respectively}
+\item{init_sys}{Linear polynomial model that configures the initial parameterization.
+Must be a BJ model. Overrules the \code{order} argument}
+
\item{options}{Estimation Options, setup using
\code{\link{optimOptions}}}
}
diff --git a/man/oe.Rd b/man/oe.Rd
index 7d0427e..86239d2 100644
--- a/man/oe.Rd
+++ b/man/oe.Rd
@@ -4,7 +4,7 @@
\alias{oe}
\title{Estimate Output-Error Models}
\usage{
-oe(x, order = c(1, 1, 0), options = optimOptions())
+oe(x, order = c(1, 1, 0), init_sys = NULL, options = optimOptions())
}
\arguments{
\item{x}{an object of class \code{idframe}}
@@ -13,6 +13,9 @@ oe(x, order = c(1, 1, 0), options = optimOptions())
(nb,nf,nk) are order of polynomial B + 1, order of the polynomial F,
and the input-output delay respectively}
+\item{init_sys}{Linear polynomial model that configures the initial parameterization.
+Must be an OE model. Overrules the \code{order} argument}
+
\item{options}{Estimation Options, setup using
\code{\link{optimOptions}}}
}