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

波变换

开发平台:

Matlab

  1. function info = defaninf(t,nodes,datas)
  2. %DEFANINF Define node infos (all nodes).
  3. %   INF = DEFANINF(T,N,D) returns an array of
  4. %   numbers which contains information related
  5. %   to the nodes N.
  6. %
  7. %   N can be a column vector containing the indices of nodes
  8. %   or a matrix, which contains the depths and positions of nodes.
  9. %   In the last case, N(i,1) is the depth of i-th node 
  10. %   and N(i,2) is the position of i-th node.
  11. %
  12. %   D is a cell array containing datas.
  13. %   D{k} is the data related to the node N(k).
  14. %
  15. %   INF(k,:) is the computed information associated
  16. %   with the node N(k).
  17. %
  18. %   Caution:
  19. %   This method has to be overloaded for a
  20. %   concrete class of objects.
  21. %   ----------
  22. %   For the Class DTREE the DEFANINF method assign
  23. %   an empty matrix information to each node N(k).
  24. %   ----------
  25. %
  26. %   See also DTREE.
  27. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 15-Oct-96.
  28. %   Last Revision: 04-Jun-1998.
  29. %   Copyright 1995-2002 The MathWorks, Inc.
  30. %   $Revision: 1.4 $  $Date: 2002/04/14 19:34:39 $
  31. nb   = length(nodes);
  32. info = zeros(nb,0);