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

波变换

开发平台:

Matlab

  1. function depth = treedpth(t)
  2. %TREEDPTH Tree depth. 
  3. %   D = treedpth(T) returns the depth D of the tree T.
  4. %
  5. %   See also WTREEMGR.
  6. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  7. %   Last Revision: 14-May-2003.
  8. %   Copyright 1995-2004 The MathWorks, Inc.
  9. % $Revision: 1.10.4.2 $
  10. depth = wtreemgr('depth',t);