在好例子网,分享、交流、成长!
您当前所在位置:首页MATLAB 开发实例MATLAB语言基础 → EEMD分解(eemd.m)

EEMD分解(eemd.m)

MATLAB语言基础

下载此实例
  • 开发语言:MATLAB
  • 实例大小:4.41KB
  • 下载次数:23
  • 浏览次数:431
  • 发布时间:2020-11-30
  • 实例类别:MATLAB语言基础
  • 发 布 人:归零e下
  • 文件格式:.m
  • 所需积分:4
 相关标签: eemd

实例介绍

【实例简介】
【实例截图】

【核心代码】

function allmode=eemd(Y,Nstd,NE)
% This is an EMD/EEMD program
%
% INPUT:
% Y: Inputted data;1-d data only
% Nstd: ratio of the standard deviation of the added noise and that of
% Y; Nstd = (0.1 ~ 0.4)*std(Y). 
% NE: Ensemble number for the EEMD, NE = 10-50.
% 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).
%
% NOTE:
% It should be noted that when Nstd is set to zero and NE is set to 1, the
% program degenerates to a EMD program.(for EMD Nstd=0,NE=1)
% This code limited sift number=10 ,the stoppage criteria can't change.

% References:
% Wu, Z., and N. E Huang (2008),
% Ensemble Empirical Mode Decomposition: a noise-assisted data analysis method.
% Advances in Adaptive Data Analysis. Vol.1, No.1. 1-41.
%
% code writer: Zhaohua Wu.
% footnote:S.C.Su 2009/03/04
%
% There are three loops in this code coupled together.
% 1.read data, find out standard deviation ,devide all data by std
% 2.evaluate TNM as total IMF number--eq1.
% TNM2=TNM 2,original data and residual included in TNM2
% assign 0 to TNM2 matrix
% 3.Do EEMD NE times-----------loop EEMD start
% 4.add noise
% 5.give initial values before sift
% 6.start to find an IMF------IMF loop start
% 7.sift 10 times to get IMF------sift loop start and end
% 8.after 10 times sift --we got IMF
% 9.subtract IMF from data ,and let the residual to find next IMF by loop
% 6.after having all the IMFs-------------IMF loop end
% 9.after TNM IMFs ,the residual xend is over all trend
% 3.Sum up NE decomposition result--------loop EEMD end
% 10.Devide EEMD summation by NE,std be multiply back to data

%% Association: no
% this function ususally used for doing 1-D EEMD with fixed
% stoppage criteria independently.
%
% Concerned function: extrema.m
% above mentioned m file must be put together

%function allmode=eemd(Y,Nstd,NE)

%part1.read data, find out standard deviation ,devide all data by std
xsize=length(Y);
dd=1:1:xsize; 
Ystd=std(Y);
Y=Y/Ystd;    

%part2.evaluate TNM as total IMF number,ssign 0 to N*TNM2 matrix
TNM=fix(log2(xsize))-5;   % TNM=m
TNM2=TNM 2;               
for kk=1:1:TNM2,
    for ii=1:1:xsize,
        allmode(ii,kk)=0.0;  
    end
end

%part3 Do EEMD -----EEMD loop start
for iii=1:1:NE, %EEMD loop NE times EMD sum together

%part4 --Add noise to original data,we have X1
    for i=1:xsize,
        temp=randn(1,1)*Nstd; % add a random noise to Y
        X1(i)=Y(i) temp;
    end

%part4 --assign original data in the first column
    for jj=1:1:xsize,
        mode(jj,1) = Y(jj); % assign Y to column 1of mode
    end

%part5--give initial 0to xorigin and xend
    xorigin = X1;   % 
    xend = xorigin; %

%part6--start to find an IMF-----IMF loop start
    nmode = 1;

    while nmode <= TNM,
    xstart = xend; %last loop value assign to new iteration loop
                   %xstart -loop start data
    iter = 1;      %loop index initial value

%part7--sift 10 times to get IMF---sift loop start
        while iter<=10,  
            [spmax, spmin, flag]=extrema(xstart); %call function extrema
                                                  %the usage of spline ,please see part11.
            upper= spline(spmax(:,1),spmax(:,2),dd); %upper spline bound of this sift
            lower= spline(spmin(:,1),spmin(:,2),dd); %lower spline bound of this sift
            mean_ul = (upper   lower)/2;            %spline mean of upper and lower
            xstart = xstart - mean_ul;              %extract spline mean from Xstart
            iter = iter  1;
        end

%part8--subtract IMF from data ,then let the residual xend to start to find next IMF
    xend = xend - xstart;      
    nmode=nmode 1;              

%part9--after sift 10 times,that xstart is this time IMF
    for jj=1:1:xsize,
        mode(jj,nmode) = xstart(jj);  
    end
end

%part10--after gotten all(TNM) IMFs ,the residual xend is over all trend
% put them in the last column
    for jj=1:1:xsize,
        mode(jj,nmode 1)=xend(jj);
    end

%after part 10 ,original   TNM IMFs overall trend ---those are all in mode
    allmode=allmode mode;   
end  %part3 Do EEMD -----EEMD loop end

%part11--devide EEMD summation by NE,std be multiply back to data
allmode=allmode/NE;    
allmode=allmode*Ystd;  

标签: eemd

实例下载地址

EEMD分解(eemd.m)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警