您的位置:首页 > 编程语言 > MATLAB

matlab——eemd函数的使用

2016-04-26 21:22 726 查看
参考链接: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。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: