https://github.com/cran/dse
Raw File
Tip revision: b4e9802bf92924d3f69b72bc4e35f062580b4a8a authored by Paul Gilbert on 16 December 2015, 18:54:01 UTC
version 2015.12-1
Tip revision: b4e9802
checkBalanceMittnik.Rd
\name{checkBalanceMittnik}
\alias{checkBalanceMittnik}
\alias{checkBalanceMittnik.ARMA}
\alias{checkBalanceMittnik.SS}
\alias{checkBalanceMittnik.TSestModel}

\title{Check Balance of a TSmodel}
\description{
Calculate the difference between observability and reachability gramians 
of the model transformed to Mittnik's form.
}
\usage{
    checkBalanceMittnik(model)
    \method{checkBalanceMittnik}{ARMA}(model)
    \method{checkBalanceMittnik}{SS}(model)
    \method{checkBalanceMittnik}{TSestModel}(model)
}
\arguments{
    \item{model}{An object of class TSmodel.}
}
\value{No value is returned.}
\section{Side Effects}{
Differences  between the observability and reachability gramians are printed.}
\details{
Balanced models should have equal observability and reachability gramians.
}
\seealso{
\code{\link{checkBalance}}
\code{\link{MittnikReduction}}
}
\examples{
    data("eg1.DSE.data.diff", package="dse")
    model <- toSS(estVARXls(eg1.DSE.data.diff))
    checkBalanceMittnik(model)
}
\concept{DSE}
\keyword{ts}

back to top