simulate_quadratic | R Documentation |
Based on the original article by J.C. Sprott (Sprott, J. C. "Automatic Generation of Strange Attractors." Comput. & Graphics 17, 325-332, 1993c). The map used formalized as
xn+1 = a0 + a1 xn + a2 xn2 + a3 xn yn + a4 yn + a5 yn2
yn+1 = a6 + a7 xn + a8 xn2 + a9 xn yn + a10 yn + a11 yn2
simulate_quadratic(
parameters,
start_coords = c(x = 0, y = 0),
iterations = 100
)
parameters |
a numeric vector of 12 values |
start_coords |
initial conditions (numeric vector) |
iterations |
number of iterations (integer) |
a dataframe with time, x, and y columns
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.