summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--R/poly.R2
-rw-r--r--man/idpoly.Rd6
2 files changed, 7 insertions, 1 deletions
diff --git a/R/poly.R b/R/poly.R
index ee03fe4..788ddbe 100644
--- a/R/poly.R
+++ b/R/poly.R
@@ -10,6 +10,8 @@
#' @param ioDelay the delay in the input-output channel
#' @param Ts sampling interval
#' @param noiseVar variance of the white noise source (Default=\code{1})
+#' @param intNoise Logical variable indicating presence or absence of integrator
+#' in the noise channel (Default=\code{FALSE})
#' @param unit time unit (Default=\code{"seconds"})
#'
#' @details
diff --git a/man/idpoly.Rd b/man/idpoly.Rd
index 68d2caf..f95eca2 100644
--- a/man/idpoly.Rd
+++ b/man/idpoly.Rd
@@ -5,7 +5,8 @@
\title{Polynomial model with identifiable parameters}
\usage{
idpoly(A = 1, B = 1, C = 1, D = 1, F1 = 1, ioDelay = 0, Ts = 1,
- noiseVar = 1, unit = c("seconds", "minutes", "hours", "days")[1])
+ noiseVar = 1, intNoise = F, unit = c("seconds", "minutes", "hours",
+ "days")[1])
}
\arguments{
\item{A}{autoregressive coefficients}
@@ -22,6 +23,9 @@ of the stochastic model}
\item{noiseVar}{variance of the white noise source (Default=\code{1})}
+\item{intNoise}{Logical variable indicating presence or absence of integrator
+in the noise channel (Default=\code{FALSE})}
+
\item{unit}{time unit (Default=\code{"seconds"})}
}
\description{