gka_kphi.m

来自「代码用于估计关联维数。包括G-P算法(corrint.m)」· M 代码 · 共 32 行

M
32
字号
function fit=gka_kphi(xi,b,m,tau);%function fit=gka_kphi(xi,b,m,tau);%%return RMS error of the fit of % b(m)=phi*exp(-m*K*tau)%%where% xi(1)=phi  : constant% xi(2)=K    : entropy% b          : b(m)=phi*exp(-m*K*tau)% m=m        : embedding dimension% tau=tau    : embedding lag%%no check of args is done (to speed up calculation)%% For more info, read README%% Michael Small% ensmall@polyu.edu.hk% 28/2/02k=xi(1);phi=xi(2);fit=phi.*exp(-m*k*tau);fit=b-fit;fit=sum(fit.^2); %Euclidean norm

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?