资源简介
希尔伯特黄变换(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源代码
相关资源
- 论文Cryptanalysis of MD4 and RIPEMD的翻译
- eemd的使用和选择
- CEEMDAN算法,EEMD和EMD的进一步改进算法
- EEMD方法和EMD方法抗模态混叠对比研究
- CEEMD-信息熵-完美运行,你指的拥有。
- EMD端点效应抑制的一种实用方法
- MPU6050 移植STM32F4程序
- 经验模式分解(Empirical Mode Decomposit
- emd程序 程序包资源
- emd,eemd,ceemd,ceemdan 函数分解差异
- CEEMD分解-imf分量相关系数-信息熵特征
- hht变换工具箱
- CEEMD-相关系数-样本熵特征,用于故障
- emd分解适合初学者
- EEMD处理.rar
- 经验模态分解的ppt演子
- EMD的相关原理
- 改进两种经验模态分解去噪
- EMD完整程序
- 用希尔伯特黄变换HHT求时频谱和边际
- EMD端点效应处理镜像延拓法
- 经验模态分解端点效应处理程序
- emd-希尔伯特变换包络谱
- EMD无密码.llb
评论
共有 条评论