How can i generate chaos sequence
10 ビュー (過去 30 日間)
古いコメントを表示
I want to generate chaos sequence using matlab,please provide me the code for this sequence generation
0 件のコメント
採用された回答
Ö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 件のコメント
Thouraya Ghouaidia
2022 年 10 月 3 日
Sir, I want to generate a chaotic sequence with logistic map and he on map, any help plz?
その他の回答 (2 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!