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

波变换

开发平台:

Matlab

  1. function pack = wpcoef(Ts,Ds,node)
  2. %WPCOEF Wavelet packet coefficients.
  3. %   X = WPCOEF(S,D,N) returns the coefficients associated
  4. %   with the node N. S is the tree structure and D
  5. %   the data structure (see MAKETREE).
  6. %   If N doesn't exist, X = [];
  7. %
  8. %   X = WPCOEF(S,D) is equivalent to X = WPCOEF(S,D,0) 
  9. %
  10. %   See also MAKETREE, WPDEC, WPDEC2.
  11. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  12. %   Last Revision: 04-May-1999.
  13. %   Copyright 1995-2002 The MathWorks, Inc.
  14. % $Revision: 1.11 $
  15. % Check arguments.
  16. if errargn(mfilename,nargin,[2 3],nargout,[0 1]), error('*'); end
  17. if nargin==2, node = 0; end
  18. [nul,nul,pack] = wpjoin(Ts,Ds,node);