求助高手帮忙
function s_t_m=C_CMethod_m(data)%this function calculate time delay and embedding demension with C-C
%Method,which proved by H.S.Kim
%skyhawk&flyinghawk
%****************调试程序段****************************
%clear all;
%data=load('d:/matlab7/toolbox/work/5.txt');
%************************************************
data=load('5.txt')
N=length(data);
max_d=9;%the maximum value of the time delay
sigma=std(data);%calcute standard deviation s_d
for m=2:5
for t=1:max_d
t
for j=1:4
r=sigma*j/2;
data_d=disjoint(data,N,t);%将时间序列分解成t个不相交的时间序列
=size(data_d);
s_t3=0;
for i=1:t
Y=data_d(i,:);
C_1(i)=correlation_integral(Y,N_d,r);%计算C(1,N_d,r,t)
X=reconstitution(Y,N_d,m,t);%相空间重构
N_r=N_d-(m-t)*t;
C_I(i)=correlation_integral(X,N_r,r);%计算C(m,N_r,r,t)
s_t3=s_t3+(C_I(i)-C_1(i)^m);%对t个不相关的时间序列求和
end
s_t2(j)=s_t3/t;
end
s_t_m(t,m)=max(s_t2)-min(s_t2);
end
end
fid=fopen('s_t_m.txt','w');
fprintf(fid,'%f %f %f %f\n',s_t_m);
fclose(fid);
t=1:max_d;
plot(t,s_t_m(:,2),t,s_t_m(:,3),'+',t,s_t_m(:,4),'.',t,s_t_m(:,5),'*')
为什么会出现下面的问题?
??? Undefined command/function 'disjoint'.
Error in ==> c_c_ at 21
data_d=disjoint(data,N,t);%将时间序列分解成t个不相交的时间序列
回复 楼主 yanzi 的帖子
"data_d=disjoint(data,N,t);"其中disjoint不是MATLAB的内部函数,是自己定义的一个子函数回复 沙发 yuling 的帖子
那怎么改写这个程序才能完整 合理?回复 板凳 yanzi 的帖子
你写一个将时间序列分解成t个不相交的时间序列的子函数“disjoint(data,N,t)”就可以了回复 地板 yuling 的帖子
你说的是下面的这个程序吗?function data_d=disjoint(data,N,t)
%the function is used to subdivid the time series into t disjoint time
%series.
%data:the time series
%N:the length of the time series
%t:the index lag
%skyhawk
for i=1:t
for j=1:(N/t)
data_d(i,j)=data(i+(j-1)*t);
end
end 关键是怎么写一个将时间序列分解成t个不相交的时间序列的子函数“disjoint(data,N,t)”啊
帮忙写一下真的 谢谢了 本人实在是很愚钝没做出来 问题解决了
回复 7楼 yanzi 的帖子
楼主也不共享一下经验,具体怎样解决的回复 8楼 mjhzhjg 的帖子
添加子程序一切搞定
页:
[1]