test.m

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

M
25
字号
%you've unpacked it and compiled all the mex files.%now test it with the followingxi=randn(2,1);for i=1:1000,  xi=ikeda(xi);end;x=[];for i=1:3000,  xi=ikeda(xi)+randn(2,1)*0.01;  x=[x xi];end;z=x(1,:)+randn(1,3000)*0.02;plot(z(1:(end-1)),z(2:end),'.');%compute complexitycmp=complexity(z,2:10);%compute dimensionsfigure;[m,d,k,s]=gka(z,2:20,1,250,3);

⌨️ 快捷键说明

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