How can i generate chaos sequence

2 visualizaciones (últimos 30 días)
RESHMA
RESHMA el 16 de Feb. de 2016
Comentada: Thouraya Ghouaidia el 3 de Oct. de 2022
I want to generate chaos sequence using matlab,please provide me the code for this sequence generation

Respuesta aceptada

Özgür Aktekin
Özgür Aktekin el 20 de Sept. de 2016
Hi Ammu,
You can use the logistic map.
x(n+1) = r*x(n)*(1-x(n))
%sequence is chaotic where 3.57 < r < 4.
r = 3.8; % r parameter for chaotic regime
size = 100; % size of chaotic array
x(1)= 4; % initial value
for i=1:size-1
x(i+1) = r*x(i)*(1-x(i));
end
%Now x is a chaotic array with 100 elements.
Hope this will help.
Özgür
  3 comentarios
lakshmi boddu
lakshmi boddu el 5 de Mzo. de 2018
can u plse help me with the code which u have tried for logistic map
Thouraya Ghouaidia
Thouraya Ghouaidia el 3 de Oct. de 2022
Sir, I want to generate a chaotic sequence with logistic map and he on map, any help plz?

Iniciar sesión para comentar.

Más respuestas (2)

maneesha g
maneesha g el 2 de Mayo de 2018
sir, i want lorenz chaotic sequence please help me sir

Adib Mashuri
Adib Mashuri el 30 de Nov. de 2018
anyone know how to predict chaos using mean with the sequence result? because mu coding just can only resulted one step next prediction only.

Categorías

Más información sobre Agriculture en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by