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

波变换

开发平台:

Matlab

  1. function tnd = split(t,node,x,varargin)
  2. %SPLIT Split (decompose) the data of a terminal node.
  3. %   TNDATA = SPLIT(T,N,X) decomposes the data X 
  4. %   associated to the terminal node N of the 
  5. %   data tree T.
  6. %   TNDATA is a cell array (ORDER x 1) such that
  7. %   TNDATA{k} contains the data associated to
  8. %   the kth child of N.
  9. %
  10. %   Caution: 
  11. %   This method has to be overloaded for a
  12. %   concrete class of objects.
  13. %   ----------
  14. %   For the Class DTREE the SPLIT method assign
  15. %   the data of N to the most left child.
  16. %   ----------
  17. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 15-Oct-96.
  18. %   Last Revision: 21-May-2003.
  19. %   Copyright 1995-2004 The MathWorks, Inc.
  20. %   $Revision: 1.4.4.2 $  $Date: 2004/03/15 22:37:37 $
  21. order  = treeord(t);
  22. tnd    = cell(order,1);
  23. tnd{1} = x;