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

波变换

开发平台:

Matlab

  1. function o = wtbo(userdata)
  2. %WTBO Constructor for the class WTBO.
  3. %   OBJ = WTBO returns a WTBO object. Any object in
  4. %   the Wavelet Toolbox is parented by a WTBO object.
  5. %
  6. %   With OBJ = WTBO(USERDATA) you may set an userdata field.
  7. %
  8. % Class WTBO (Parent objects: none)
  9. % Fields:
  10. %   wtboInfo - Object information.
  11. %     (Not used in the current version of the Toolbox).
  12. %   ud       - Userdata field.
  13. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 05-Jun-98.
  14. %   Last Revision: 30-Jul-1999.
  15. %   Copyright 1995-2004 The MathWorks, Inc.
  16. %   $Revision: 1.4.4.2 $  $Date: 2004/03/15 22:39:32 $
  17. o.wtboInfo = 'wtbo';
  18. if nargin>0 , o.ud = userdata; else , o.ud = []; end
  19. o = class(o,'wtbo');