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

波变换

开发平台:

Matlab

  1. function [t,x] = wpjoin(t,node)
  2. %WPJOIN Recompose wavelet packet.
  3. %   WPJOIN updates the wavelet packet tree after 
  4. %   the recomposition of a node.
  5. %
  6. %   T = WPJOIN(T,N) returns the modified tree T
  7. %   corresponding to a recomposition of the node N.
  8. %
  9. %   T = WPJOIN(T) is equivalent to T = WPJOIN(T,0).
  10. %
  11. %   [T,X] = WPJOIN(T,N) also returns the coefficients
  12. %   of the node.
  13. %
  14. %   [T,X] = WPJOIN(T) is equivalent to [T,X] = WPJOIN(T,0).
  15. %
  16. %   See also WPDEC, WPDEC2, WPSPLT.
  17. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  18. %   Last Revision: 14-May-2003.
  19. %   Copyright 1995-2004 The MathWorks, Inc.
  20. %   $Revision: 1.4.4.2 $  $Date: 2004/03/15 22:39:20 $
  21. if nargin == 1, node = 0; end
  22. [t,x] = nodejoin(t,node);