ts1.m
来自「混沌分析的软件」· M 代码 · 共 16 行
M
16 行
function xt=ts1(xr,w);
%a la takens space for effective forecast of non-correlated sequences tau=w
%last point is xr(end)
%w- the length of the analog in time series= dimension
%tau=1;%tau=w;
xr=xr(:);
xt=[];
for j=1:w,
xt0=xr(end-j+1:-w:w-j+1);
xt=[xt0(end:-1:1) xt];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?