필터 지우기
필터 지우기

How can i generate chaos sequence

조회 수: 8 (최근 30일)
RESHMA
RESHMA 2016년 2월 16일
댓글: Thouraya Ghouaidia 2022년 10월 3일
I want to generate chaos sequence using matlab,please provide me the code for this sequence generation

채택된 답변

Özgür Aktekin
Özgür Aktekin 2016년 9월 20일
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
lakshmi boddu
lakshmi boddu 2018년 3월 5일
can u plse help me with the code which u have tried for logistic map
Thouraya Ghouaidia
Thouraya Ghouaidia 2022년 10월 3일
Sir, I want to generate a chaotic sequence with logistic map and he on map, any help plz?

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

maneesha g
maneesha g 2018년 5월 2일
sir, i want lorenz chaotic sequence please help me sir

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

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by