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

波变换

开发平台:

Matlab

  1. function t = wvtree(varargin)
  2. %WVTREE Constructor for the class WVTREE.
  3. %   T = WVTREE(X,DEPTH,WNAME) returns a wavelet tree T.
  4. %   If X is a vector, the tree is of order 2.
  5. %   If X is a matrix, the tree is of order 4.
  6. %   The DWT extension mode is the current one.
  7. %
  8. %   T = WVTREE(X,DEPTH,WNAME,DWTMODE) returns a wavelet tree T
  9. %   built using DWTMODE as DWT extension mode.
  10. %
  11. %   With T = WVTREE(X,DEPTH,WNAME,DWTMODE,USERDATA)
  12. %   you may set a userdata field.
  13. %
  14. %   If ORDER = 2, T is a WVTREE object corresponding to a
  15. %   wavelet decomposition of the vector (signal) X,
  16. %   at level DEPTH with a particular wavelet WNAME.
  17. %
  18. %   If ORDER = 4, T is a WVTREE object corresponding to a
  19. %   wavelet decomposition of the matrix (image) X,
  20. %   at level DEPTH with a particular wavelet WNAME.
  21. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 09-Oct-1998.
  22. %   Last Revision: 14-May-2003.
  23. %   Copyright 1995-2004 The MathWorks, Inc.
  24. %   $Revision: 1.5.4.2 $  $Date: 2004/03/15 22:36:16 $ 
  25. %===============================================
  26. % Class WVTREE (parent class: WTREE)
  27. % Fields:
  28. %   dummy - Not Used
  29. %   wtree - Parent object
  30. %===============================================
  31. % Check arguments.
  32. %-----------------
  33. nbIn = nargin;
  34. if nbIn < 3
  35.   error('Not enough input arguments.');
  36. end
  37. % Tree creation.
  38. %---------------
  39. O.dummy = 'left';
  40. t = wtree(varargin{:});
  41. % Built object.
  42. %--------------
  43. t = class(O,'wvtree',t);