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

波变换

开发平台:

Matlab

  1. function varargout = de1dtool(option,varargin)
  2. %DE1DTOOL Density estimation 1-D tool.
  3. %   VARARGOUT = DE1DTOOL(OPTION,VARARGIN)
  4. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 03-Nov-98.
  5. %   Last Revision: 05-Jul-1999.
  6. %   Copyright 1995-2002 The MathWorks, Inc.
  7. %   $Revision: 1.4 $  $Date: 2002/04/14 19:47:39 $
  8. % Test inputs.
  9. %-------------
  10. if nargin==0 , option = 'create'; end
  11. if ~isequal(option,'create') , win_tool = varargin{1}; end
  12. switch option
  13.   case 'create'
  14.     win_tool = wdretool('createDEN');
  15.     if nargout>0 , varargout{1} =  win_tool; end
  16.   case 'close' , wdretool('close');
  17.   otherwise
  18.     errargt(mfilename,'Unknown Option','msg');
  19.     error('*');
  20. end