• 大小: 601KB
    文件类型: .7z
    金币: 2
    下载: 0 次
    发布日期: 2024-01-27
  • 语言: 其他
  • 标签: HHT  EMD  例子  

资源简介

台湾中央大学的HHT代码,附带例子和讲解

资源截图

代码片段和文件信息

% 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);



评论

共有 条评论