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

波变换

开发平台:

Matlab

  1. function nottn = noleaves(t,varargin)
  2. %NOLEAVES Determine nonterminal nodes.
  3. %   N = NOLEAVES(T) returns the indices of nonterminal 
  4. %   nodes of the tree T (i.e., nodes, which are not leaves).
  5. %   N is a column vector.
  6. %
  7. %   N = NOLEAVES(T,'dp') returns a matrix N, which
  8. %   contains the depths and positions of nonterminal nodes.
  9. %   N(i,1) is the depth of i-th nonterminal node and
  10. %   N(i,2) is the position of i-th nonterminal node.
  11. %
  12. %   See also LEAVES.
  13. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Oct-96.
  14. %   Last Revision: 14-May-2003.
  15. %   Copyright 1995-2004 The MathWorks, Inc.
  16. %   $Revision: 1.8.4.2 $  $Date: 2004/03/15 22:41:25 $
  17. nottn = wtreemgr('noleaves',t,varargin{:});