emd分解MATLAB自带函数

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 than SiftRelativeTolerance

  • 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分解的统计信息 

你可能感兴趣的:(emd分解MATLAB自带函数)