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

波变换

开发平台:

Matlab

  1. function nb = ntnode(t)
  2. %NTNODE Number of terminal nodes.
  3. %   NB = NTNODE(T) returns the number of terminal nodes
  4. %   in the tree T. 
  5. %
  6. %   The nodes are numbered from left to right and
  7. %   from top to bottom. The root index is 0.
  8. %
  9. %   See also WTREEMGR.
  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.10.4.2 $
  14. nb = wtreemgr('ntnode',t);