资源简介
计算出序列的关联维数d,然后利用嵌入维数m>=2d+1,选取合适的嵌入维数。
代码片段和文件信息
function [ln_rln_C]=G_P(dataNtaumin_mmax_mss)
% the function is used to calculate correlation dimention with G-P algorithm
% data:the time series
% N: the length of the time series
% tau: the time delay
% min_m:the least embedded dimention m
% max_m:the largest embedded dimention m
% ss:the stepsize of r
%skyhawk
for m=min_m:max_m
Y=reconstitution(dataNmtau);%reconstitute state space
M=N-(m-1)*tau;%the number of points in state space
for i=1:M-1
for j=i+1:M
d(ij)=max(abs(Y(:i)-Y(:j)));%calculate the distance of each two
end %points i
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1296 2004-07-29 21:19 G_P.m
----------- --------- ---------- ----- ----
1296 1
- 上一篇:对计算机专业认识
- 下一篇:EXCEL2007转2003程序
评论
共有 条评论