Lyapunov exponent of logistic map

Computes estimated values of Lyapunov exponent of logistic map for r within the interval (3.5,4)
1,2K descargas
Actualizado 7 sep 2018

Ver licencia

function LE = LEofLogisticMap( rStart, rEnd, rStep )
calculates Lyapunov exponent of logistic map x(t+1) = r*x(t)*(1-x(t)) for r within the interval (3.5,4) using derivative for values of control parameter from rStart to rEnd with step rStep

INPUT
- rStart - first value of control parameter r
- rEnd - last value of control parameter r
- rStep - step

OUTPUT
- LE - values of estimated Lyapunov exponent according to [S03]

EXAMPLE OF USE:
rStart = 3.5;
rEnd = 4;
rStep = 0.0001;
LE = LEofLogisticMap( rStart, rEnd, rStep );
figure; plot( rStart:rStep:rEnd, LE, 'k.-' ); axis tight;
title('Values of estimated Lyapunov exponent for logistic map for r = 3.5...4' );
xlabel( 'r' );
ylabel( 'Values of estimated Lyapunov exponent' );

REFERENCES
[S03] J.C. Sprott, 2003. Chaos and time-series analysis, volume 69. Oxford University Press Oxford.
%
% @author Valentina Unakafova
% @email UnakafovaValentina(at)gmail.com
% @date 11.07.2017

Citar como

Valentina Unakafova (2024). Lyapunov exponent of logistic map (https://www.mathworks.com/matlabcentral/fileexchange/63803-lyapunov-exponent-of-logistic-map), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2013b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Matrix Computations en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.1.2

Cover picture has been changed

1.1.1.0

Description is renewed

1.1.0.0

Example of use and cover picture are added

1.0.0.0