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

波变换

开发平台:

Matlab

  1. %EX1_EDWT Example of 1-D wavelet tree (EDWTTREE OBJECT).
  2. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 16-Sep-1999.
  3. %   Last Revision: 18-Oct-1999.
  4. %   Copyright 1995-2002 The MathWorks, Inc.
  5. %   $Revision: 1.4 $  $Date: 2002/04/14 19:31:42 $ 
  6. % load the signal.
  7. load noisbloc;
  8. x = noisbloc;
  9. % Define the level and the wavelet.   
  10. lev = 2;
  11. wav = 'haar';
  12. % Create the wavelet tree.
  13. t = edwttree(x,lev,wav);
  14. % Plot tree t.
  15. plot(t)
  16. %---------------------------------------------------
  17. % Click the node (0). You obtain the following plot.
  18. %
  19. % HERE NEW PLOT
  20. %---------------------------------------------------
  21. % Change Node Action from Visualize to Split_Merge.
  22. % Split the nodes (5) and (20).
  23. %
  24. % HERE NEW PLOT
  25. %---------------------------------------------------
  26. % Select Tree Action: De-noise.
  27. % Click the node (0). You obtain the following plot.
  28. %
  29. % HERE NEW PLOT
  30. %---------------------------------------------------