3QMM 发表于 2008-3-11 21:36

共享关联积分Corrleration_Integral代码

这是我自己用来计算关联积分的程序,希望对大家有用。
function C_I=Correlation_Integral(m,Y,r)
%%%the data come frome the disjoint.m,it is also a sub-time-serial ,Y=data(i,:)'
%%%or the data come from the reconstitution.m,Y is the reconstitution space
=size(Y);
sum_H=0;
M=N-(m-1);
if Y(N)~=0;
for i=1:N;
    for j=i+1:N;
      d=norm((Y(i,:)-Y(j,:)),inf);
      sita=heaviside(r,d);
      sum_H=sum_H+sita;
    end
end
else
for i=1:N-1;
    for j=i+1:N-1;
      d=norm((Y(i,:)-Y(j,:)),inf);
      sita=heaviside(r,d);
      sum_H=sum_H+sita;
    end
end   
end
C_I=2*sum_H/(M*(M-1));

无水1324 发表于 2008-3-11 22:29

回复 楼主 的帖子

感谢分享!

octopussheng 发表于 2008-3-12 07:29

楼主用的Heaviside函数和混沌工具箱里面的一致么?

3QMM 发表于 2008-3-12 10:45

就是在help看它的句法结构是这样的

xiaoqiu810818 发表于 2008-3-14 21:13

回复一楼

谢谢了!

xulihua123 发表于 2008-3-17 16:31

谢谢了

DDevil 发表于 2012-9-18 09:25

谢谢楼主了
页: [1]
查看完整版本: 共享关联积分Corrleration_Integral代码