gen.logistic {Chaos01} | R Documentation |
Logistic map
Description
Generate iterations of the logistic map defined as x[t+1] = mu * x[t] * (1 - x[t]).
Usage
gen.logistic(mu, iter = 5000, x0 = 1e-04)
Arguments
mu |
parameter of the logistic function. mu should be from the interval (0,4). |
iter |
number of iterations of the logistic function. Default is 5000. |
x0 |
the initial value of the series. Should be from the interval (0,1). Default is 0.0001. |
Value
numeric vector with the iterations of the logistic map.
Examples
vec.x <- gen.logistic(mu = 3.55, iter = 200)
plot(vec.x, type = "l")
[Package Chaos01 version 1.2.1 Index]