马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
这是我自己用来计算关联积分的程序,希望对大家有用。
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
[N,ll]=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)); |