Lyapunov exponent of logistic map

Computes estimated values of Lyapunov exponent of logistic map for r within the interval (3.5,4)
1,2K téléchargements
Mise à jour 7 sept. 2018

Afficher la licence

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

Citation pour cette source

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

Compatibilité avec les versions de MATLAB
Créé avec R2013b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Matrix Computations dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
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