• 大小: 40KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-20
  • 语言: Matlab
  • 标签: emd  

资源简介

emd分解以及计算HHT变换的所有matlab程序

资源截图

代码片段和文件信息

%ADDTAG  add a tag to an object
%
% ADDTAG(OBJ_HANDLESTR)

% Adds the tag STR to the object referrenced by OBJ_HANDLE
% When OBJ_HANDLE is an array of handles STR is added to all corresponding
% objects.

% Rem: In order for this to work properly the object‘s tag field must be a string 
% containing keywords (or tags) separated by commas.
%
%
% See also
%  hastag findtag rmtag
%
% G.Rilling 12/2006
% gabriel.rilling@ens-lyon.fr

function addtag(objstr)
inds = ~hastag(objstr);
tags = get(obj(inds)‘Tag‘);
if ~iscell(tags)
  tags = {tags};
end
inds = find(inds);
new_tags = cellfun(@(x)[x‘‘str]tags‘UniformOutput‘false);
new_tags = cellfun(@(x)regexprep(x‘^‘‘‘)new_tags‘UniformOutput‘false);
arrayfun(@(ind)set(obj(inds(ind))‘Tag‘new_tags{ind})1:length(inds));

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        791  2007-03-21 15:06  emd\addtag.m

     文件       3546  2007-03-21 15:06  emd\boundary_conditions_emd.m

     文件       2354  2007-03-21 15:06  emd\cemdc.m

     文件       2362  2007-03-21 15:06  emd\cemdc2.m

     文件       2312  2007-03-21 15:06  emd\cemdc2_fix.m

     文件       2305  2007-03-21 15:06  emd\cemdc_fix.m

     文件       2547  2007-03-21 15:06  emd\cemd_disp.m

     文件       2823  2007-03-21 15:06  emd\cemd_visu.m

     文件       2053  2007-03-21 15:06  emd\cenvelope.m

     文件       1248  2007-03-21 15:06  emd\dirstretch.m

     文件       1583  2007-03-21 15:06  emd\disp_hhs.m

     文件      22080  2007-03-21 15:06  emd\emd.m

     文件       2280  2007-03-21 15:06  emd\emdc.m

     文件       2141  2007-03-21 15:06  emd\emdc_fix.m

     文件       9897  2007-03-21 15:06  emd\emd_local.m

     文件      26315  2007-03-21 15:06  emd\emd_online.m

     文件       3216  2007-03-21 15:06  emd\emd_visu.m

     文件       1938  2007-03-21 15:06  emd\extr.m

     文件       1044  2007-03-21 15:06  emd\findtag.m

     文件        659  2007-03-21 15:06  emd\hastag.m

     文件       1445  2007-03-21 15:06  emd\hhspectrum.m

     文件       4483  2007-03-21 15:06  emd\index_emd.m

     文件       1274  2007-03-21 15:06  emd\install_emd.m

     文件        504  2007-03-21 15:06  emd\io.m

     文件        644  2007-03-21 15:06  emd\make_emdc.m

     文件        798  2007-03-21 15:06  emd\plot3c.m

     文件       3243  2007-03-21 15:06  emd\plotc.m

     文件        820  2007-03-21 15:06  emd\rmtag.m

     文件       3003  2007-03-21 15:06  emd\toimage.m

     文件       2128  2007-03-21 15:06  emd\uninstall_emd.m

............此处省略4个文件信息

评论

共有 条评论