天天看点

【Lorenz】基于MATLAB的lorenz混沌序列产生器

1.软件版本

MATLAB2013b

2.本算法理论知识

【Lorenz】基于MATLAB的lorenz混沌序列产生器

3.部分源码

%this is the function of lorenz
function RR = func_lorenz(t,XX);
X=XX(1);%the variable of x
Y=XX(2);%the variable of y
Z=XX(3);%the variable of z

%the parameter of three constant
delta = 10;
beta  = 8/3;
lows  = 28;

RR(1) = delta*(Y -X );%the first  formula
RR(2) = (lows-Z)*X-Y; %the second formula
RR(3) = X*Y-beta*Z;   %the third  formula
RR    = RR';      

4.仿真分析

【Lorenz】基于MATLAB的lorenz混沌序列产生器

5.参考文献

继续阅读