You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to extend my gratitude for developing such a library. I've chosen to raise a topic in the issues section, anticipating that others may also find it relevant. I aim to utilize your package to calculate the correlation dimension of various dynamical systems. However, to have confidence in the outcomes, I need to be able to replicate the commonly referenced dimension value of
d=2.05±0.01 for the Lorenz attractor with (sigma, rho, beta)=(10, 28, 8/3). Ideally, my goal is to generate a figure akin to the one attached. I find it perplexing that most packages, despite claims of this capability, seldom demonstrate this value in their documentation or examples. Could you provide any guidance or examples that successfully achieve this benchmark?
Thanks for your time,
Ricardo
The text was updated successfully, but these errors were encountered:
Hi Ricardo. 👋 Unfortunately, I only occasionally have time to work on nolds, but good settings for the Lorenz system are one of my priorities for the path to version 1.0. The current version that you get when you install directly via pip install git+https://github.com/CSchoel/nolds.git has a corresponding example that you can run with python -m nolds.examples lorenz. If you add debug_plot=True to the call that reconstructs the correlation dimension from the data of the variable y, you get the following plot:
With the y coordinate, you get closest to the prescribed value with d = 2.057. If you want to look at the values outside the "linear part" of the curve, you can substitute rvals = nolds.logarithmic_r(1, np.e, 1.1) with rvals = nolds.logarithmic_r(np.e**-1, np.e**4, 1.1).
Unfortunately, it was not at all trivial to find good parameter settings for this experiment. My main issue is that I didn't find any example in the literature that reports all parameters, both for the simulation of the Lorenz system and the correlation dimension algorithm. If you come across such an example, I would be immensely grateful for a link.
Hi Christopher,
I'd like to extend my gratitude for developing such a library. I've chosen to raise a topic in the issues section, anticipating that others may also find it relevant. I aim to utilize your package to calculate the correlation dimension of various dynamical systems. However, to have confidence in the outcomes, I need to be able to replicate the commonly referenced dimension value of
d=2.05±0.01 for the Lorenz attractor with (sigma, rho, beta)=(10, 28, 8/3). Ideally, my goal is to generate a figure akin to the one attached. I find it perplexing that most packages, despite claims of this capability, seldom demonstrate this value in their documentation or examples. Could you provide any guidance or examples that successfully achieve this benchmark?
Thanks for your time,
Ricardo
The text was updated successfully, but these errors were encountered: