三维Logistic混沌映射(matlab)

427 阅读1分钟

三维Logistic混沌映射(3D Logistic chaotic map)

3D Logistic chaotic map
其中:
三维Logistic混沌映射控制参数范围
三维logistic图的特征图(Characteristic plot of 3D logistic map):
三维logistic图的特征图

混沌(An,Bn,Cn)随机序列图:
三维Logistic混沌
matlab部分代码:

for i=1:(n-1)
    x(i+1)=a*x(i)*(1-x(i))+b*y(i)^2*x(i)+c*z(i)^3;
    y(i+1)=a*y(i)*(1-y(i))+b*z(i)^2*y(i)+c*x(i)^3;
    z(i+1)=a*z(i)*(1-z(i))+b*x(i)^2*z(i)+c*y(i)^3;
end
plot3(x,y,z,'r');

源代码完整版
download.csdn.net/download/qq…

引用:

Khade P N , Narnaware M . 3D Chaotic Functions for Image Encryption[J]. International Journal of Computer Science Issues, 2012, 9(3).

引用:

M. A. Lone and S. Qureshi, ‘RGB image encryption based on symmetric keys using Arnold transform, 3D chaotic map and affine hill cipher’, Optik, vol. 260, p. 168880, Jun. 2022, doi: 10.1016/j.ijleo.2022.168880.

引用: 三维Logistic混沌映射(matlab)_看星星1的博客-CSDN博客

以上内容仅作为个人学习笔记,无商业行为。