三维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');

源代码完整版
https://download.csdn.net/download/qq_43511222/86338539

引用:

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.

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

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐