emd分解MATLAB自带函数
程序员文章站
2024-01-19 14:50:34
...
matlab 2018开始自带了emd和hht函数,现将emd函数用法总结如下:
[imf,residual,info]=emd(x,'Interpolation','pchip')
%或者
emd(x,'Interpolation','pchip')
输入参数:
- x:原始信号向量
-
SiftRelativeTolerance:默认值0.2,
sifting stops when current relative tolerance is less thanSiftRelativeTolerance
-
SiftMaxIterations:默认值100,单个imf筛选的最大轮数
-
MaxNumIMF:默认值10,
Maximum number of IMFs extracted -
MaxNumExtrema:默认值1,residual里的最大极值点数量
-
MaxEnergyRatio:默认值20.
Signal to residual energy ratio -
Interpolation:上、下包络线的插值方法。平滑信号用spline(默认值,
cubic spline),非平滑信号用pchip(
piecewise cubic Hermite interpolating polynomial method)
输出参数:
- imf:矩阵,每一列代表一个imf
- residual:信号的残差
- info:emd分解的统计信息
上一篇: 抓取多玩搞笑动态图片
下一篇: 数据分析-pandas存储文本文件
推荐阅读