资源简介
EMD是Ensemble Empirical Mode Decomposition的缩写,中文是集合经验模态分解,是针对EMD方法的不足,提出了一种噪声辅助数据分析方法。EEMD分解原理是当附加的白噪声均匀分布在整个时频空间时,该时频空间就由滤波器组分割成的不同尺度成分组成。本文件给出了一个matlab的EEMD的例子 .
代码片段和文件信息
%function [ndataa]=blocknormalize(data)
% The function BLOCKNORMALIZE normalizes each block of the input signal
% as defined by zero crossings to have a maximum amplitude of 1.
%
% Suggestion: if the routine is needed than use it with caution.
disp(‘Using block-normalize are you sure?!‘)
disp(‘Slope discontinuous will happen in left and right side about a zero‘)
pause(2);
%
% Calling sequence-
% [ndataa]=blocknormalize(data)
%
% Input-
% data - 2-D matrix data(nptncol)
% Output-
% ndata - 2-D matrix of normalized data (FM)
% a - 2-D matrix of envelope (AM)
%
% Used by-
% FA
%written by
% Kenneth Arnold (NASA GSFC) Summer 2003 Initial
% Kenneth Arnold (NASA GSFC) June 6 2004 Tweaked
%footnote: S.C.Su (2009/09/01)
%this code is with complex structurebut easy meanings
%just remember about some easy sentences
%“Blocks are defined as those segments between the zero-crossing points“
%“Finding the extreme value in each blockthe value is the amplitude of this block“
%
%1.read the datacheck input matrix
%2.Do the normalization for an IMF ---loop A start
%3.checking each data value from the beginning point of each block----loop B start
%4.read the sign (+-0) form starting of every block
%5. make judgement block by blockstart from point 1-----loop C start
%6.judge the value about its signdifferent sign means the end of this block
%7.judge the value about its signthe same sign means still in the same block
%5. make judgement block by blockstart from point 1-----loop C end
%3.checking each data value from the beginning point of each block----loop B end
%2.Do the normalization for an IMF ---loop A end
%
function [ndataa]=blocknormalize(data)
%1.read the datacheck input matrix
%----- Get the dimension
[nptncol] = size(data);
%----- Flip data if needed
flipped=0;
if (ncol > npt)
data=data‘;
[nptncol] = size(data);
flipped=1;
end
%----- Initialize amplitude matrix
a = ones(nptncol);
%2.Do the normalization for an IMF ---loop A start
%----- Process each column of data
for col=1:ncol
i=1;
%3.checking each data value from the beginning point of each block----loop B start
while (i<=npt)
%4.read the sign (+-0) form starting of every block
blockSign = sign(data(icol)); %get blocksign : + or -or 0find it first
% when zero is meetuse right-hand side sign as the blocksign for it
while (blockSign == 0 & i < npt) % handle zero case
i=i+1;
blockSign = sign(data(icol));
end
if (i==npt)
break; %after all values are checkedthis if help to stop “while“
end
%5. make judgement block by blockstart from point 1-----loop C start
blockExtr = 0; % extreme value (maximum or minimum)
%----- Find the end of this block and its extreme value
for (j=i:npt) %this block from (i~j)
j; %the jth value is the value that we are
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-05-09 22:50 EEMD\
文件 3356 2009-10-08 01:39 EEMD\FAacos.m
文件 3013 2009-10-21 16:40 EEMD\FAcosfor.m
文件 1528 2009-10-08 01:42 EEMD\FAhilbert.m
文件 1603 2009-10-27 04:11 EEMD\FAimpHilbert.m
文件 7896 2009-10-08 01:42 EEMD\FAquadrature.m
文件 6695 2009-10-08 01:38 EEMD\FAzc.m
文件 3794 2009-10-12 00:01 EEMD\FSPHSP.m
文件 319505 2009-06-08 13:25 EEMD\LOD-imf.csv
文件 29021 2002-09-25 14:23 EEMD\LOD78.csv
文件 7709 2009-10-27 09:09 EEMD\NCU2009V1.txt
文件 4316 2009-10-08 01:34 EEMD\blocknormalize.m
文件 5770 2009-10-08 16:07 EEMD\confidenceLine.m
文件 2115 2009-10-08 16:07 EEMD\dist_value.m
文件 5276 2009-10-08 15:59 EEMD\eemd.m
文件 853 2009-10-08 15:37 EEMD\emax.m
文件 867 2009-10-08 15:36 EEMD\emin.m
文件 9997 2009-10-08 16:52 EEMD\endprocess1.m
文件 5152 2009-10-13 21:40 EEMD\ex02d.m
文件 4361 2009-10-08 15:59 EEMD\extrema.m
文件 7935 2009-10-27 04:03 EEMD\fa.m
文件 6536 2009-10-08 16:41 EEMD\findEE.m
文件 11957 2009-10-12 01:41 EEMD\findEEfsp.m
文件 3103 2009-10-08 15:46 EEMD\findcriticalpoints.m
文件 13153 2009-10-11 12:08 EEMD\fspecial.m
文件 2207 2009-10-11 16:47 EEMD\hilbert.m
文件 1683 2009-10-08 01:37 EEMD\hilbertnormalize.m
文件 18846 2009-10-27 04:06 EEMD\hilbtm.m
文件 3502 2009-10-08 15:58 EEMD\ifndq.m
文件 3610 2009-10-08 01:36 EEMD\linearnormalize.m
文件 2614 2009-10-09 00:36 EEMD\local_max.m
............此处省略14个文件信息
相关资源
- EMD 算法MATLAB 程序
- Norden E.Huang的FEEMD算法
- EEMD的MATLAB程序
- eemd分解和作图
- eemd算法程序 matlab代码
- MATLAB信号处理EEMD工具箱
- EMD matlab实现源码
- EEMD集成经验模态分解matlab程序.rar
- emd和eemd算法的matlab源程序
- 中央大学 EMD HHT Matlab 源代码
- EMD HHT Matlab 信号分析,Google英文原版
- HHT变换的3种方法
- matlab自带HHT算法,最简洁的EMD分解
- ModelPredictiveControlSystemDesignandImplement
- 西储大学轴承故障分析matlab代码
- Matlab EMD工具箱+时频分析TFTB工具箱
- 经验模态分解+样本熵matlab程序代码
- 西储大学轴承数据及EMD代码
- MATLAB 2016可用 EMD工具箱
- 振动信号EMD分析matlab算法-abbr_96cb004
- 基于EMD分解·和希尔伯特变换(HHT)的
- MATLAB——FEEMD.rar
- EEMD集合经验模态分解matlab程序代码
- 经验模态分解EMD对复杂信号进行分解
- 经验模态分解算法EMD MATLAB程序
- emd算法的matlab实现
- EMD过程中数据拟合的算法改进与实现
- emd程序,EMD分解算法
- 可以运行的EMD工具箱针对hhspectrum错误
- eemd算法的matlab实现
评论
共有 条评论