Lyapunov exponent of logistic map

Computes estimated values of Lyapunov exponent of logistic map for r within the interval (3.5,4)
1.2K Downloads
Updated 7 Sep 2018

View License

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

Cite As

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

MATLAB Release Compatibility
Created with R2013b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Matrix Computations in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
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