资源简介
很适合学习的人,初学者可以下载去看一看,里面的资源很不错的啊
代码片段和文件信息
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 2004-08-08 22:36 hht_toolbox_20040808\
目录 0 2004-08-08 22:36 hht_toolbox_20040808\@components\
文件 1045 2004-08-06 15:06 hht_toolbox_20040808\@components\apply.m
文件 718 2004-08-06 15:28 hht_toolbox_20040808\@components\char.m
文件 3431 2004-08-08 22:21 hht_toolbox_20040808\@components\compare.m
文件 2363 2004-08-06 16:02 hht_toolbox_20040808\@components\components.m
文件 1010 2004-08-06 17:06 hht_toolbox_20040808\@components\Contents.m
文件 188 2004-07-30 15:51 hht_toolbox_20040808\@components\display.m
文件 812 2004-08-06 16:02 hht_toolbox_20040808\@components\double.m
文件 4124 2004-08-06 16:02 hht_toolbox_20040808\@components\fa.m
文件 174 2004-07-30 22:32 hht_toolbox_20040808\@components\faz.m
文件 1761 2004-08-08 22:14 hht_toolbox_20040808\@components\get.m
文件 1238 2004-08-08 22:21 hht_toolbox_20040808\@components\hist.m
文件 157 2004-08-06 16:02 hht_toolbox_20040808\@components\max.m
文件 157 2004-08-06 16:02 hht_toolbox_20040808\@components\min.m
文件 1842 2004-08-06 16:02 hht_toolbox_20040808\@components\mspec.m
文件 1958 2004-08-06 16:02 hht_toolbox_20040808\@components\nsp.m
文件 4792 2004-08-06 16:02 hht_toolbox_20040808\@components\nspplot.m
文件 1727 2004-08-08 22:20 hht_toolbox_20040808\@components\plot.m
文件 1248 2004-07-30 18:12 hht_toolbox_20040808\@components\splinenormalize.m
文件 795 2004-08-08 22:12 hht_toolbox_20040808\@components\subsref.m
文件 204 2004-08-08 21:18 hht_toolbox_20040808\@components\sum.m
目录 0 2004-08-08 22:36 hht_toolbox_20040808\dfequations\
文件 563 2004-07-02 19:17 hht_toolbox_20040808\dfequations\dufng.m
文件 611 2004-07-02 19:17 hht_toolbox_20040808\dfequations\mbssel.m
文件 23552 2004-06-09 21:38 hht_toolbox_20040808\dfequations\RefTable1.doc
文件 568 2004-07-02 19:17 hht_toolbox_20040808\dfequations\rslr.m
目录 0 2004-08-08 22:37 hht_toolbox_20040808\disfunctional\
文件 310 2004-07-02 19:17 hht_toolbox_20040808\disfunctional\bmovi.m
文件 36864 2004-06-11 22:37 hht_toolbox_20040808\disfunctional\dumpmemmex.dll
文件 2750 2004-07-02 19:17 hht_toolbox_20040808\disfunctional\emd_intermit.m
............此处省略267个文件信息
相关资源
- fft-piv矢量估计matlab代码
- 利用Matlab进行车辆检测与车型识别
- 压缩在感知之广义正交匹配追踪法G
- 压缩感知之分段正交匹配追踪法StOM
- 压缩感知之迭代硬阈值法IHT可直接运
- 导电煤质分界面平面的垂直入射的M
- 处理高密度椒盐噪声matlab代码
- matlab 相机标定工具箱
- 数学建模动态规划matlab编程与例题精
- 蚁群算法最短路径通用Matlab程序
- JPEG标准哈夫曼编码无损压缩Matlab
- mfsk调制解调matlab源程序
- 语音信号的双门限的端点检测MATLAB代
- matlab robotics toolbox 工具箱
- 基于Matlab的语音信号端点检测程序
- 基于MATLAB实现DTW算法
- Matlab模糊工具箱和神经网络工具箱的
- DVHOP定位算法源程序MATLAB
- 快速小波分解的M文件
- 强化学习_倒立摆_Matlab程序
- matlab的多用户检测
- MATLAB 地震程序
- 基于Matlab的多图像超分辨率重建算法
- Matlab实现的一个简单的RADAR预警雷达模
- Matlab模糊自适应PID控制仿真程序
- SC_OFDMA的Matlab仿真
- 船舶航向模糊控制matlab仿真代码非s
- zw_matlab形成节点导纳矩阵的程序.zip
- zw_MATLAB实现图像去噪滤波锐化边缘检
- 遗传算法求解Rastrigin函数
评论
共有 条评论