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

波变换

开发平台:

Matlab

  1. function x = merge(t,node,tnd)
  2. %MERGE Merge (recompose) the data of a node.
  3. %   X = MERGE(T,N,TNDATA) recomposes the data X 
  4. %   associated with the node N of the data tree T,
  5. %   using the datas associated to the children of N.
  6. %
  7. %   TNDATA is a cell array (ORDER x 1) or (1 x ORDER)
  8. %   such that TNDATA{k} contains the data associated with
  9. %   the kth child of N.
  10. %
  11. %   Caution: 
  12. %   This method has to be overloaded for a
  13. %   concrete class of objects.
  14. %   ----------
  15. %   For the Class DTREE the MERGE method assign
  16. %   the data of the most left child of N to N.
  17. %   ----------
  18. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 15-Oct-96.
  19. %   Last Revision: 04-Jun-1998.
  20. %   Copyright 1995-2002 The MathWorks, Inc.
  21. %   $Revision: 1.4 $  $Date: 2002/04/14 19:34:54 $
  22. x = tnd{1};