⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 funinterpoint.m

📁 相关积分计算matlab程序
💻 M
字号:

function InterPoint = FunInterpoint(m,tao,Serial)
% output -Interpoint:相空间中的两点距离(即相空间矢量的距离)序列,
% 采用欧氏范数距离

%----------------- reconstruct phase space------------------
n = length(Serial);
N = n - (m-1)*tao;
for i = 1:N
    for j = 1:m
        PS(i,j) = Serial(i+(j-1)*tao);
    end
end
%----------------interpoint distance---------------------
InterPoint = [];
N = size(PS,1);
for i=1:N
    for j=i+1:N
        D = norm(PS(i,:) - PS(j,:),2);
        InterPoint = [InterPoint,D];
    end
end

⌨️ 快捷键说明

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