资源简介
希尔伯特黄变换(HHT)、经验模式分解(EMD)

代码片段和文件信息
function varargout = apply(cfuncvarargin)
% COMPONENTS/APPLY applies arbitrary functions to a Components strucutre
%
% Usage:
% [any output] = apply(cfunc[any other inputs])
%
% Input:
% c - input Components data
% func - The function handle to apply to the data
% other arguments passed on to ‘func‘.
% Output:
% all Components structures each holding the output of ‘func‘ for each
% input component in sequence
%
% Notes:
% Only 1 and 2 outputs are implemented.
% This function is mainly intended to help make wrappers for “plain“
% functions to allow them to work on Components structures. As such it is
% most useful as a model for programmers.
% Kenneth C. Arnold (for NASA GSFC) 2004-08-06
nc = get(c‘nc‘);
varargout{1} = c;
if nargout == 1
for i=1:nc
varargout{1}.d(i).c = feval(funcc.d(i).cvarargin{:});
end
elseif nargout == 2
varargout{2} = c;
for i=1:nc
[varargout{1}.d(i).c varargout{2}.d(i).c] = feval(funcc.d(i).cvarargin{:});
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-12-27 13:57 HHT\
目录 0 2011-12-27 13:57 HHT\@components\
文件 1010 2004-08-06 17:06 HHT\@components\Contents.m
文件 1045 2004-08-06 15:06 HHT\@components\apply.m
文件 718 2004-08-06 15:28 HHT\@components\char.m
文件 3431 2004-08-08 22:21 HHT\@components\compare.m
文件 2363 2004-08-06 16:02 HHT\@components\components.m
文件 188 2004-07-30 15:51 HHT\@components\display.m
文件 812 2004-08-06 16:02 HHT\@components\double.m
文件 4124 2004-08-06 16:02 HHT\@components\fa.m
文件 174 2004-07-30 22:32 HHT\@components\faz.m
文件 1761 2004-08-08 22:14 HHT\@components\get.m
文件 1238 2004-08-08 22:21 HHT\@components\hist.m
文件 157 2004-08-06 16:02 HHT\@components\max.m
文件 157 2004-08-06 16:02 HHT\@components\min.m
文件 1842 2004-08-06 16:02 HHT\@components\mspec.m
文件 1958 2004-08-06 16:02 HHT\@components\nsp.m
文件 4792 2004-08-06 16:02 HHT\@components\nspplot.m
文件 1727 2004-08-08 22:20 HHT\@components\plot.m
文件 1248 2004-07-30 18:12 HHT\@components\splinenormalize.m
文件 795 2004-08-08 22:12 HHT\@components\subsref.m
文件 204 2004-08-08 21:18 HHT\@components\sum.m
文件 291328 2004-07-21 11:33 HHT\RefManual2004May.doc
目录 0 2011-12-27 13:57 HHT\dfequations\
文件 23552 2004-06-09 21:38 HHT\dfequations\RefTable1.doc
文件 563 2004-07-02 19:17 HHT\dfequations\dufng.m
文件 611 2004-07-02 19:17 HHT\dfequations\mbssel.m
文件 568 2004-07-02 19:17 HHT\dfequations\rslr.m
目录 0 2011-12-27 13:57 HHT\disfunctional\
文件 310 2004-07-02 19:17 HHT\disfunctional\bmovi.m
文件 36864 2004-06-11 22:37 HHT\disfunctional\dumpmemmex.dll
............此处省略267个文件信息
- 上一篇:grunt-cli压缩包-0.1.13版本
- 下一篇:yolo源代码
相关资源
- EMD(经验模式分解)
- 基于改进EMD算法的跳频信号参数估计
- emd分解端点效应论文及改进程序
- bemd处理图像进行图像分解操作.zip
- PROE外挂SMY_EMD
- HHT课件——国立中央大学
- EEMD的快速实现FEEMD
- 台湾中央大学的HHT代码,附带和讲解
- rcada_eemd--快速eemd算法
- 基于HHT-CS-ELM的瓦斯涌出量时序预测
- 论文研究 - 基于EMD和BP_AdaBoost神经网络
- emd分解成多个imf分量,通过判断以后
- 网上能下到的最好的2种HHT,附加EMD工
- UCGUI 3.90a版源码MEMDEV
- 基于希尔伯特_黄变换的输电线路故障
- YML保存 cvCompareHist cvCalcEMD2 直方图对比
- 集成经验模态分解EEMD代码
- EMD分解程序
- RadarSystemDesignandInterferenceAnalysisUsingS
- ceemd分解,可以运行
- HHT变换包括工具包
- EMDKfordotNET手册
- Hilbert-Huang变换(HHT)代码
- EMD分解并绘制希尔伯特时频谱
- 基于EMD和相关的滚动轴承故障包络谱
- 信号模态分析EMD相关代码
- 改进版程序ceemd,抑制噪音不错
- emdeemdceemd去噪
- 基于emd分解特性的阈值去噪算法
- 噪声自适应完备总体平均经验模态分
评论
共有 条评论