【代码分享】16种时间序列数据模态分解方法

16种时间序列数据分解方法:EMD(经验模态分解);EEMD(集合经验模态分解);CEEMD(互补集合经验模态分解);FEEMD(快速EEMD分解);CEEMDAN(完全自适应噪声集合经验模态分解);ICEEMDAN(改进的自适应噪声完备EEMD);LMD(局域均值分解);RLMD(鲁棒性局部均值分解);EWT(经验小波分解);VMD(变分模态分解);MVMD(多元变分模式分解);SVMD(Successive Variational Mode Decomposition);tvfemd(时变滤波器的经验模态分解);SSD(奇异谱分解);SSA(奇异谱分析);REMD(鲁棒经验模态分解)对时间序列数据进行模态分解(Mode Decomposition)可以将原始序列分解成不同的模态分量,每个模态量表示了不同的频率成分和趋势信息。这样做的好处有以下几点:

  1. 揭示潜在模式:模态分解可以将时间序列数据分解成多个模态量,每个模态量对应不同的频率成分和趋势信息。这样可以更好地理解数据中的潜在模式,例如长期趋势、季节性变化、周期性波动等。
  2. 去除噪音:模态分解可以将噪音或干扰分离出来,并将其归为低频模态量。通过分离噪音,我们可以更清晰地观察和分析数据中的真实趋势和周期性变化,从而提高预测的准确性。
  3. 数据预处理:对时间序列进行模态分解后,可以对不同的模态量进行独立的预处理和分析。例如,可以对高频模态量进行平滑处理,对低频模态量进行去趋势处理,以更好地消除异常值和处理缺失值。
  4. 预测改进:模态分解可以帮助改进时间序列的预测性能。通过分解出不同的模态量,可以更好地建模和预测每个模态量的变化。这样可以通过将预测结果合并得到更准确的总体预测结果。

总之,对时间序列数据进行模态分解可以更好地理解和处理数据中的不同频率成分和趋势信息,有助于改善预测和分析的准确性。

代码获取方式:【代码分享】16种时间序列数据模态分解方法

  1. %Function for CEEMDAN
  2. %WARNING: for this code works it is necessary to include in the same
  3. %directoy the file emd.m developed by Rilling and Flandrin.
  4. %This file is available at %http://perso.ens-lyon.fr/patrick.flandrin/emd.html
  5. %We use the default stopping criterion.
  6. %We use the last modification: 3.2007
  7. % Syntax
  8. %modes=ceemdan(x,Nstd,NR,MaxIter,SNRFlag)
  9. %[modes its]=ceemdan(x,Nstd,NR,MaxIter,SNRFlag)
  10. % Description
  11. %OUTPUT
  12. %modes: contain the obtained modes in a matrix with the rows being the modes
  13. %its: contain the sifting iterations needed for each mode for each realization (one row for each realization)
  14. %INPUT
  15. %x: signal to decompose
  16. %Nstd: noise standard deviation
  17. %NR: number of realizations
  18. %MaxIter: maximum number of sifting iterations allowed.
  19. %SNRFlag: if equals 1, then the SNR increases for every stage, as in [1].
  20. % If equals 2, then the SNR is the same for all stages, as in [2].
  21. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  22. % The current is an improved version, introduced in:
  23. %[1] Colominas MA, Schlotthauer G, Torres ME. "Improve complete ensemble EMD: A suitable tool for biomedical signal processing"
  24. % Biomedical Signal Processing and Control vol. 14 pp. 19-29 (2014)
  25. %The CEEMDAN algorithm was first introduced at ICASSP 2011, Prague, Czech Republic
  26. %The authors will be thankful if the users of this code reference the work
  27. %where the algorithm was first presented:
  28. %[2] Torres ME, Colominas MA, Schlotthauer G, Flandrin P. "A Complete Ensemble Empirical Mode Decomposition with Adaptive Noise"
  29. % Proc. 36th Int. Conf. on Acoustics, Speech and Signa Processing ICASSP 2011 (May 22-27, Prague, Czech Republic)
  30. %Author: Marcelo A. Colominas
  31. %contact: macolominas@bioingenieria.edu.ar
  32. %Last version: 25 feb 2015
  33. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  34. function [modes,its]=iceemdan(x,Nstd,NR,MaxIter,SNRFlag)
  35. x=x(:)';
  36. desvio_x=std(x);
  37. x=x/desvio_x;
  38. modes=zeros(size(x));
  39. temp=zeros(size(x));
  40. aux=zeros(size(x));
  41. iter=zeros(NR,round(log2(length(x))+5));
  42. for i=1:NR
  43. white_noise{i}=randn(size(x));%creates the noise realizations
  44. end;
  45. for i=1:NR
  46. modes_white_noise{i}=emd(white_noise{i});%calculates the modes of white gaussian noise
  47. end;
  48. for i=1:NR %calculates the first mode
  49. xi=x+Nstd*modes_white_noise{i}(1,:)/std(modes_white_noise{i}(1,:));
  50. [temp, o, it]=emd(xi,'MAXMODES',1,'MAXITERATIONS',MaxIter);
  51. temp=temp(1,:);
  52. aux=aux+(xi-temp)/NR;
  53. iter(i,1)=it;
  54. end;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值

举报

选择你想要举报的内容(必选)
  • 内容涉黄
  • 政治相关
  • 内容抄袭
  • 涉嫌广告
  • 内容侵权
  • 侮辱谩骂
  • 样式问题
  • 其他
点击体验
DeepSeekR1满血版
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回顶部

登录后您可以享受以下权益:

×