TestStationarity | R Documentation |
The function computes the eigenvalues of the input matrix x
.
It checks if all eigenvalues have moduli less than 1.
If all eigenvalues have moduli less than 1,
the system is considered stationary.
TestStationarity(x)
x |
Numeric matrix. |
Ivan Jacob Agaloos Pesigan
Other Simulation of State Space Models Data Functions:
LinSDE2SSM()
,
SimBetaN()
,
SimPhiN()
,
SimSSMFixed()
,
SimSSMIVary()
,
SimSSMLinGrowth()
,
SimSSMLinGrowthIVary()
,
SimSSMLinSDEFixed()
,
SimSSMLinSDEIVary()
,
SimSSMOUFixed()
,
SimSSMOUIVary()
,
SimSSMVARFixed()
,
SimSSMVARIVary()
,
TestPhi()
,
TestStability()
x <- matrix(
data = c(0.5, 0.3, 0.2, 0.4),
nrow = 2
)
TestStationarity(x)
x <- matrix(
data = c(0.9, -0.5, 0.8, 0.7),
nrow = 2
)
TestStationarity(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.