博客
关于我
matlab——eemd函数的使用
阅读量:142 次
发布时间: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/

你可能感兴趣的文章
MYSQL:基础——3N范式的表结构设计
查看>>
MYSQL:基础——触发器
查看>>
Mysql:连接报错“closing inbound before receiving peer‘s close_notify”
查看>>
mysqlbinlog报错unknown variable ‘default-character-set=utf8mb4‘
查看>>
mysqldump 参数--lock-tables浅析
查看>>
mysqldump 导出中文乱码
查看>>
mysqldump 导出数据库中每张表的前n条
查看>>
mysqldump: Got error: 1044: Access denied for user ‘xx’@’xx’ to database ‘xx’ when using LOCK TABLES
查看>>
Mysqldump参数大全(参数来源于mysql5.5.19源码)
查看>>
mysqldump备份时忽略某些表
查看>>
mysqldump实现数据备份及灾难恢复
查看>>
mysqldump数据库备份无法进行操作只能查询 --single-transaction
查看>>
mysqldump的一些用法
查看>>
mysqli
查看>>
MySQLIntegrityConstraintViolationException异常处理
查看>>
mysqlreport分析工具详解
查看>>
MySQLSyntaxErrorException: Unknown error 1146和SQLSyntaxErrorException: Unknown error 1146
查看>>
Mysql_Postgresql中_geometry数据操作_st_astext_GeomFromEWKT函数_在java中转换geometry的16进制数据---PostgreSQL工作笔记007
查看>>
mysql_real_connect 参数注意
查看>>
mysql_secure_installation初始化数据库报Access denied
查看>>