blob: 13a55562091fc047c5dc3a322e2d1472f46f9f3e (
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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/estpoly.R
\name{estpoly}
\alias{estpoly}
\title{Estimated polynomial object}
\usage{
estpoly(sys, fitted.values, residuals, options = NULL, call, stats,
termination = NULL, input)
}
\arguments{
\item{sys}{an \code{idpoly} object containing the estimated polynomial
coefficients}
\item{fitted.values}{1-step ahead predictions on the training dataset}
\item{residuals}{1-step ahead prediction errors}
\item{options}{optimization specification ser used (applicable for non-linear least
squares)}
\item{call}{the matched call}
\item{stats}{a list containing estimation statistics}
\item{termination}{termination criteria for optimization}
\item{input}{input signal of the training data-set}
}
\description{
Estimated discrete-time polynomial model returned from an estimation
routine.
}
\details{
Do not use \code{estpoly} for directly specifing an input-output polynomial model.
\code{\link{idpoly}} is to be used instead
}
|