天天看點

【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.參考文獻

繼續閱讀