
Last chance! 50% off unlimited learning
Sale ends in
Generates a time series using the logistic map.
logisticMap(
r = 4,
start = runif(n = 1, min = 0, max = 1),
n.sample = 5000,
n.transient = 500,
do.plot = deprecated()
)
A vector containing the values of the time series that has been generated.
The r parameter. Default: 4
A numeric value indicating the starting value for the time series. If the starting point is not specified, it is generated randomly.
Length of the generated time series. Default: 5000 samples.
Number of transient samples that will be discarded. Default: 500 samples.
Logical value. If TRUE, a plot of the generated logistic system is shown. Before version 0.2.11, default value was TRUE; versions 0.2.11 and later use FALSE as default.
Constantino A. Garcia
The logistic map is defined as follows:
Strogatz, S.: Nonlinear dynamics and chaos: with applications to physics, biology, chemistry and engineering (Studies in Nonlinearity)
henon, lorenz, rossler, ikedaMap,
cliffordMap, sinaiMap, gaussMap
if (FALSE) {
log.map=logisticMap(n.sample = 1000, n.transient=10,do.plot=TRUE)
}
Run the code above in your browser using DataLab