资源简介
台湾中央大学的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);
相关资源
- rcada_eemd--快速eemd算法
- 基于HHT-CS-ELM的瓦斯涌出量时序预测
- 论文研究 - 基于EMD和BP_AdaBoost神经网络
- emd分解成多个imf分量,通过判断以后
- ecc使用源代码——真正好用的vs2010编
- Multisim10实验电路图26个原创
- OMAPL138例程
- 网上能下到的最好的2种HHT,附加EMD工
- 电机仿真
- UCGUI 3.90a版源码MEMDEV
- NXP的LPC系列ARM的程序
- iOS 点餐系统分享
- ZEMAX资料大集合
- 基于希尔伯特_黄变换的输电线路故障
- YML保存 cvCompareHist cvCalcEMD2 直方图对比
- NS2 TCL脚本
- XFDTD7.3设计教程
- 安卓常用控件集合
- skinsharp破解版+76种界面+使用方法+
- 集成经验模态分解EEMD代码
- EMD分解程序
- 软件详细设计例子115427
- 混合动力SUV汽车的SysML建模
- RadarSystemDesignandInterferenceAnalysisUsingS
- libusb 写的发送、接受方法
- verilog hdl vhdl实用100个 quartus 2 仿真 源
- libcurl大文件
- 无线模块 cc1101+程序+原理图
- SpringCloud 全部完整
- rdlc 帮助文档 Report Definition
评论
共有 条评论