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

波变换

开发平台:

Matlab

  1. function biorinfo
  2. %BIORINFO Information on biorthogonal spline wavelets.
  3. %
  4. %   Biorthogonal Wavelets
  5. %
  6. %   General characteristics: Compactly supported 
  7. %   biorthogonal spline wavelets for which 
  8. %   symmetry and exact reconstruction are possible
  9. %   with FIR filters (in orthogonal case it is 
  10. %   impossible except for Haar).
  11. %
  12. %   Family                  Biorthogonal
  13. %   Short name              bior
  14. %   Order Nr,Nd             Nr = 1 , Nd = 1, 3, 5
  15. %   r for reconstruction    Nr = 2 , Nd = 2, 4, 6, 8
  16. %   d for decomposition     Nr = 3 , Nd = 1, 3, 5, 7, 9
  17. %                           Nr = 4 , Nd = 4
  18. %                           Nr = 5 , Nd = 5
  19. %                           Nr = 6 , Nd = 8
  20. %
  21. %   Examples                bior3.1, bior5.5
  22. %
  23. %   Orthogonal              no
  24. %   Biorthogonal            yes
  25. %   Compact support         yes
  26. %   DWT                     possible
  27. %   CWT                     possible
  28. %
  29. %   Support width           2Nr+1 for rec., 2Nd+1 for dec.
  30. %   Filters length          max(2Nr,2Nd)+2 but essentially
  31. %   bior Nr.Nd              ld                      lr      
  32. %                    effective length        effective length
  33. %                        of Lo_D                 of Hi_D
  34. %
  35. %   bior 1.1                 2                       2      
  36. %   bior 1.3                 6                       2
  37. %   bior 1.5                10                       2              
  38. %   bior 2.2                 5                       3              
  39. %   bior 2.4                 9                       3      
  40. %   bior 2.6                13                       3              
  41. %   bior 2.8                17                       3              
  42. %   bior 3.1                 4                       4              
  43. %   bior 3.3                 8                       4              
  44. %   bior 3.5                12                       4
  45. %   bior 3.7                16                       4
  46. %   bior 3.9                20                       4
  47. %   bior 4.4                 9                       7
  48. %   bior 5.5                 9                      11
  49. %   bior 6.8                17                      11
  50. %
  51. %   Regularity for          
  52. %   psi rec.                Nr-1 and Nr-2 at the knots
  53. %   Symmetry                yes  
  54. %   Number of vanishing 
  55. %   moments for psi dec.    Nr
  56. %
  57. %   Remark: bior 4.4 , 5.5 and 6.8 are such that reconstruction and 
  58. %   decomposition functions and filters are close in value.           
  59. %
  60. %   Reference: I. Daubechies, 
  61. %   Ten lectures on wavelets, 
  62. %   CBMS, SIAM, 61, 1994, 271-280.
  63. %
  64. %   See Information on reverse biorthogonal spline wavelets.   
  65. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  66. %   Last Revision: 08-Oct-1999.
  67. %   Copyright 1995-2002 The MathWorks, Inc.
  68. % $Revision: 1.13 $