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

波变换

开发平台:

Matlab

  1. function nottn = noleaves(t,flagdp)
  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 21-May-2003.
  14. %   Last Revision: 21-May-2003.
  15. %   Copyright 1995-2004 The MathWorks, Inc.
  16. %   $Revision: 1.1.6.2 $  $Date: 2004/03/15 22:38:28 $
  17. if nargin==1 , flagdp = false; else , flagdp = true; end 
  18. nottn = descendants(t,0,'not_tn',flagdp);