Lyapunov exponent of logistic map

Computes estimated values of Lyapunov exponent of logistic map for r within the interval (3.5,4)
1,2K download
Aggiornato 7 set 2018

Visualizza la licenza

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

Cita come

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

Compatibilità della release di MATLAB
Creato con R2013b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Matrix Computations in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
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