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

波变换

开发平台:

Matlab

  1. function t = set(t,varargin)
  2. %SET Set NTREE object fields contents.
  3. %   T = SET(T,'FieldName1',FieldValue1,'FieldName2',FieldValue2,...)
  4. %   sets the contents of the specified fields for the NTREE object T.
  5. %   
  6. %   The valid choices for 'FieldName' are:
  7. %     'wtbo'  : wtbo parent object
  8. %     'order' : Order of tree
  9. %     'depth' : Depth of tree
  10. %     'spsch' : Split scheme for nodes
  11. %     'tn'    : Array of terminal nodes of tree
  12. %
  13. %   Or fields in WTBO object:
  14. %     'wtboInfo' : Object information
  15. %     'ud'       : Userdata field
  16. %
  17. %   Caution: Use the SET function only for the field 'ud'.
  18. %
  19. %   See also DISP, GET.
  20. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 03-Aug-2000.
  21. %   Last Revision: 18-May-2003.
  22. %   Copyright 1995-2004 The MathWorks, Inc.
  23. %   $Revision: 1.6.4.2 $  $Date: 2004/03/15 22:38:44 $
  24. nbin = length(varargin);
  25. for k=1:2:nbin
  26.     field = varargin{k};
  27.     try 
  28.       t.(field) = varargin{k+1};
  29.     catch
  30.       lasterr('');
  31.       t.wtbo = set(t.wtbo,field,varargin{k+1});
  32.     end
  33. end