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

波变换

开发平台:

Matlab

  1. function B = loadobj(A)
  2. %WPTREE/LOADOBJ Called by load.
  3. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 29-Sep-2001.
  4. %   Last Revision: 29-Sep-2001.
  5. %   Copyright 1995-2002 The MathWorks, Inc.
  6. %   $Revision: 1.2 $  $Date: 2002/04/14 19:33:52 $
  7. if strcmp(class(A),'wptree')
  8.    B = A;
  9. else 
  10.    % object definition has changed
  11.    % or the parent class definition has changed?
  12.    try
  13.        
  14.    catch
  15.       disp(lasterr)
  16.    end
  17. end