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

波变换

开发平台:

Matlab

  1. function s = nodesize(t,nodes)
  2. %NODESIZE Size of nodes in a DTREE object.
  3. %   S = NODESIZE(T,N) gives the size of the data
  4. %   associated with the node(s) N.
  5. %
  6. %   CAUTION: N contains indices of node(s).
  7. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 23-May-2003.
  8. %   Last Revision: 23-May-2003.
  9. %   Copyright 1995-2004 The MathWorks, Inc.
  10. %   $Revision: 1.1.6.2 $  $Date: 2004/03/15 22:37:32 $
  11. ptrINFO = 2:3;
  12. idx = gidxsint(t.allNI(:,1),nodes);
  13. s   = t.allNI(idx,ptrINFO);