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

波变换

开发平台:

Matlab

  1. function x = wpcoef(wpt,node)
  2. %WPCOEF Wavelet packet coefficients.
  3. %   X = WPCOEF(T,N) returns the coefficients associated
  4. %   with the node N of the wavelet packet tree T.
  5. %   If N doesn't exist, X = [];
  6. %
  7. %   X = WPCOEF(T) is equivalent to X = WPCOEF(T,0) 
  8. %
  9. %   See also WPDEC, WPDEC2.
  10. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  11. %   Last Revision: 14-May-2003.
  12. %   Copyright 1995-2004 The MathWorks, Inc.
  13. %   $Revision: 1.4.4.2 $  $Date: 2004/03/15 22:39:18 $
  14. if nargin==1, node = 0; end
  15. [nul,x] = nodejoin(wpt,node);