getwtbo.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. function varargout = getwtbo(O,varargin)
  2. %GETWTBO Get object field contents.
  3. %   [FieldValue1,FieldValue2, ...] = ...
  4. %       GETWTBO(O,'FieldName1','FieldName2', ...) returns
  5. %   the contents of the specified fields for any object O
  6. %   in the Wavelet Toolbox.
  7. %
  8. %   First, the search is done in O. If it fails, the
  9. %   subobjects and substructures fields are examined.
  10. %
  11. %   Examples:
  12. %     t = ntree(2,3);   % t is a NTREE object.
  13. %     [o,wtboInfo,tn,depth] = getwtbo(t,'order','wtboInfo','tn','depth');
  14. %
  15. %     t = wpdec(rand(1,120),3,'db3');  % t is a WPTREE object.
  16. %     [o,tn,Lo_D,EntName] = getwtbo(t,'order','tn','Lo_D','EntName');
  17. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 03-Jun-97.
  18. %   Last Revision: 17-Sep-1999.
  19. %   Copyright 1995-2002 The MathWorks, Inc.
  20. %   $Revision: 1.5 $  $Date: 2002/04/14 19:32:12 $
  21. nbArg = length(varargin);
  22. [varargout{1:nbArg}] = wgfields(Inf,O,varargin{:});