Code covered by the BSD License  

Highlights from
Chaotic Generators Demo

image thumbnail
from Chaotic Generators Demo by Bogdan Cristea
With chaotic generators demo various types of chaotic generators can be studied.

fx=henonmap(x,rParam)
function fx=henonmap(x,rParam)

%parameters
alpha=rParam;%1.4
beta=0.3;

fx=zeros(1,2);

fx(1)=1-alpha*x(1)^2+x(2);
fx(2)=beta*x(1);

Contact us at files@mathworks.com