https://github.com/cran/dse
Raw File
Tip revision: 255d6b0f2bb198b3fdf1ac04a994762b381b07a7 authored by Paul Gilbert on 26 February 2020, 06:10:02 UTC
version 2020.2-1
Tip revision: 255d6b0
reachability.Rd
\name{reachability}
\alias{reachability}
\alias{reachability.ARMA}
\alias{reachability.SS}
\alias{reachability.TSestModel}

\title{Calculate Model Reachability Matrix}
\description{
    Calculate the singular values of the reachability matrix of a model.
}
\usage{
    reachability(model)
    \method{reachability}{ARMA}(model)
    \method{reachability}{SS}(model)
    \method{reachability}{TSestModel}(model)
}
\arguments{
    \item{model}{An object containing TSmodel.}}
\value{The singular values of the reachability matrix.}
\details{

If all singular values are significantly different from zero the
model is controllable.
}
\seealso{
\code{\link{observability}},
\code{\link{stability}}
\code{\link{roots}}
\code{\link{McMillanDegree}}
}
\examples{
data("eg1.DSE.data.diff", package="dse")
model <- toSS(estVARXls(eg1.DSE.data.diff))
reachability(model)
}
\concept{DSE}
\keyword{ts}

back to top