|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
下面的这个程序是修改于某个博客上的程序,若侵犯了版权,请及时告知,以便我及时修改!谢谢!
% M File for systems, which can be modified by any autonomous chaotic systems, should be saved in the Work file of your Matlab!!!!!!!
function dx=Chu(t,x);
% Chu system [A new autonomous chaotic system, which has many similar properties and dissimilar properties with Lorenz families]
% dx=Chu(t,[x;y;z;a;b;c])
% t-time,x,y,z- Parameters,a,b,c-coefficients
% eg: dx=Chu(0,[0.11;0.11;0.11;5;16;1])%Of course, you can verified the other values of parameter b if you like,
%some typical are given in the listed paper below.
%% Please refer one of our published papers as follows:
%褚衍东, 李险峰, 张建刚,常迎香.一个新自治混沌系统的计算机仿真与电路模拟.
%《四川大学学报:自然科学版》-2007年44卷3期 -596-602.
dx(1,1)=x(4)*(x(2)-x(1));
dx(2,1)=x(1)*x(3)-x(2);
dx(3,1)=x(5)-x(1)*x(2)-x(6)*x(3);
dx(4,1)=0;
dx(5,1)=0;
dx(6,1)=0;
% Another M File, which can be pasted in the Command windows or saved in the Work file of your Matlab.
Z=[];
[T,Y]=ode45('Chu',[0,5000],[0.1;0.1;0.1;5;16;1]);
for k=1:length(Y)
if abs(Y(k,3)-0)<1e-2; % Be careful of 0, that is z=0, namely, on the plane of x-y, the Poincare sections we chose in this paper,
%which can be selected any other Poincare section if you like, e.g. x,y,z=0 or others!
Z=[Z Y(k,1)+i*Y(k,2)];
end
end
plot(Z,'.','markersize',2)
title('Chu system's Poincare map on the plane of z=0')
xlabel('x'),ylabel('y')'自
[ 本帖最后由 无水1324 于 2008-4-27 22:18 编辑 ] |
-
评分
-
1
查看全部评分
-
|