资源简介

matlab上可以运行。其中,比如,如果你的allmode中,有14个列向量,其中第一个和第14个分别是原始信号和余量,从第二个到13个为IMFS信号。在使用polteemd时,n设置成12就可以了。

资源截图

代码片段和文件信息

% This is a utility program being called by “significance.m“.
%
%   function PDF = dist_value(yPos yBar nDof)
%

function PDF = dist_value(yPos yBar nDof)

%   function PDF = dist_value2(yPos yBar nDof)
%
%   PDF: a normalized output array 
%   yPos: An input array at which PDF values are calculated
% yBar: The expected value of yPos 
% nDof: The number of degree of freedom
%
%
% References can be found in the “Reference“ section.
%
% The code is prepared by Zhaohua Wu. For questions please read the “Q&A“ section or
% contact
%   zhwu@cola.iges.org
%
ylen = length(yPos);
eBar = exp(yBar);

evalue=exp(yPos);

for i=1:ylen
    tmp1 = evalue(i)/eBar-yPos(i);
    tmp2 = -tmp1*nDof*eBar/2;
    tmp3(i) = 0.5*nDof*eBar*log(nDof) + tmp2;
end

rscale = max(tmp3);

tmp4 = tmp3 - rscale;

PDF= exp(tmp4);



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        854  2009-04-23 18:37  eemd分解画图\dist_value.m

     文件       2040  2009-12-06 20:20  eemd分解画图\eemd.asv

     文件       2061  2012-08-15 01:29  eemd分解画图\eemd.m

     文件        778  2012-08-15 17:44  eemd分解画图\EEMD1.m

     文件       2187  2009-04-23 18:37  eemd分解画图\extrema.m

     文件       1825  2009-04-23 18:36  eemd分解画图\ifndq.m

     文件        670  2012-08-16 10:30  eemd分解画图\polteemd.m

     文件       2945  2009-04-23 18:37  eemd分解画图\significance.m

     目录          0  2012-08-20 20:22  eemd分解画图

----------- ---------  ---------- -----  ----

                13360                    9


评论

共有 条评论