博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab——eemd函数的使用
阅读量:139 次
发布时间:2019-02-28

本文共 776 字,大约阅读时间需要 2 分钟。

参考链接:http://www.ilovematlab.cn/thread-280590-1-1.html

       把标准的eemd函数加载到set path 或者直接放在 运行程序的文件夹内之后,即可调用eemd函数。具体的函数使用如下。

该函数为

function allmode=eemd(Y,Nstd,NE)

输入的英文注释如下:

% INPUT:

%       Y: Inputted data;
%       Nstd: ratio of the standard deviation of the added noise and that of Y;
%       NE: Ensemble number for the EEMD

即:Y是输入的数据;Nstd是用来设置添加高斯白噪声的标准差的,用以消去原信号中的噪声,Nstd要根据原信号中的噪声干扰大小具体情况而定,高斯白噪声的标准差设置一般为0.01~0.4,具体设置没有一个确定的公式,根据信号来确定NE是用来设置添加噪声的次数,NE通常取50或100。

输入的英文注释如下:

% OUTPUT:

%       A matrix of N*(m+1) matrix, where N is the length of the input
%       data Y, and m=fix(log2(N))-1. Column 1 is the original data, columns 2, 3, ...
%       m are the IMFs from high to low frequency, and comlumn (m+1) is the
%       residual (over all trend).

即输出一个N*(M+1)的矩阵,其中N是输入数据Y的长度,m=fix(log2(N))-1。第一列是原始数据,之后的是IMFs。

转载地址:http://lluc.baihongyu.com/

你可能感兴趣的文章