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

波变换

开发平台:

Matlab

  1. function [t,x] = wdtjoin(t,node)
  2. %WDTJOIN Recompose wavelet packet.
  3. %   WDTJOIN updates the wavelet packet tree after 
  4. %   the recomposition of a node.
  5. %
  6. %   T = WDTJOIN(T,N) returns the modified tree T
  7. %   corresponding to a recomposition of the node N.
  8. %
  9. %   T = WDTJOIN(T) is equivalent to T = WDTJOIN(T,0).
  10. %
  11. %   [T,X] = WDTJOIN(T,N) also returns the coefficients
  12. %   of the node.
  13. %
  14. %   [T,X] = WDTJOIN(T) is equivalent to [T,X] = WDTJOIN(T,0).
  15. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 13-Mar-2003.
  16. %   Last Revision: 13-Mar-2003.
  17. %   Copyright 1995-2004 The MathWorks, Inc.
  18. %   $Revision: 1.1.6.2 $  $Date: 2004/03/15 22:39:00 $
  19. % Check arguments.
  20. msg = nargoutchk(1,2,nargout); error(msg);
  21. msg = nargchk(1,2,nargin); error(msg);
  22. if nargin == 1, node = 0; end
  23. % Recomposition of the node.
  24. [t,x] = nodejoin(t,node);