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

波变换

开发平台:

Matlab

  1. function x = recons(t,node,x,sizes,edges)
  2. %RECONS Reconstruct node coefficients.
  3. %   Y = RECONS(T,N,X,S,E) reconstructs the data X 
  4. %   associated with the node N of the data tree T,
  5. %   using sizes S and the edges values E.
  6. %   S contains the size of datas associated with
  7. %   each ascendant of N.
  8. %   The children of a node F are numbered from left 
  9. %   to right: [0, ... , ORDER-1].
  10. %   The edge value between F and a child C is the
  11. %   child number.
  12. %
  13. %   Caution: 
  14. %   This method has to be overloaded for a
  15. %   concrete class of objects.
  16. %   ----------
  17. %   For the Class DTREE the RECONS method returns
  18. %   the data of the most left child of T if all edges
  19. %   are 0. Otherwise, a matrix of zeros with the same
  20. %   size as the original data is returned.
  21. %   ----------
  22. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 18-Oct-96.
  23. %   Last Revision: 04-Jun-1998.
  24. %   Copyright 1995-2002 The MathWorks, Inc.
  25. %   $Revision: 1.4 $  $Date: 2002/04/14 19:35:11 $
  26. nb_up = length(edges);
  27. if any(edges) , x = zeros(sizes(nb_up,:)); end