Description Usage Arguments References Examples
Computes the Kaplan-Yorke dimension from the Lyapunov exponents (Kaplan and Yorke 1979).
1 | DkyCalc(methodName, nVar, lyapExp)
|
methodName |
The method that was used to compute the lyapunov exponents |
nVar |
The model dimension (which corresponds to the number of exponents) |
lyapExp |
Time series of the local Lyapunov exponents spectrum (one column for each exponent) |
Kaplan, J. & Yorke, J., Chaotic behavior of multidimensional difference equations. In: Peitgen H. O. and Walther H. O., "Functional Differential Equations and the Approximation of Fixed Points", Lecture Notes in Mathematics. 730. Berlin: Springer. p. 204-227, 1979.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #' Load the global model (here for Ebola Virus Diesease)
data(Ebola)
nVar = dim(Ebola$KL)[2]
pMax = dim(Ebola$KL)[1]
dMax = p2dMax(nVar, pMax)
#' Compute the time series of Lyapunov exponents
outLyapFD <- NULL
outLyapFD$Wolf <- lyapFDWolf(outLyapFD$Wolf, nVar= nVar, dMax = dMax,
coeffF = Ebola$KL,
tDeb = 0, dt = 0.01, tFin = 2,
yDeb = Ebola$yDeb)
#' estimate the Kaplan-Yorke dimension
DkyCalc(methodName = "Wolf", nVar= 3, lyapExp = outLyapFD$Wolf$lyapExpLoc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.