View source: R/lorenzattractor.R
lorenzattractor | R Documentation |
An implementation of the Lorenz dynamical system, which describes the motion of a possible particle, which will neither converge to a steady state, nor diverge to infinity; but rather stay in a bounded but 'chaotically' defined region, i.e., an attractor.
lorenzattractor(numsteps, dt, sigma, r, b)
numsteps |
The number of simulated points |
dt |
System parameter |
sigma |
System parameter |
r |
System parameter |
b |
System parameter |
It returns a matrix with the 3 dimensions of the Lorenz
Moreno I. Coco (moreno.cocoi@gmail.com)
Lorenz, Edward Norton (1963). Deterministic nonperiodic flow. Journal of the Atmospheric Sciences 20(2) 130-141.
## initialize the parameters
numsteps = 2 ^ 11; dt = .01; sigma = 10; r = 28; b = 8/3;
res = lorenzattractor(numsteps, dt, sigma, r, b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.