midwt.m
上传用户:speoil
上传日期:2022-06-23
资源大小:224k
文件大小:4k
源码类别:

波变换

开发平台:

Matlab

  1. function [y,L] = midwt(x,h,L);
  2. %    [x,L] = midwt(y,h,L);
  3. %    Function computes the inverse discrete wavelet transform x for a 1D or
  4. %    2D input signal y using the scaling filter h.
  5. %
  6. %    Input:
  7. % y : finite length 1D or 2D input signal (implicitly periodized)
  8. %           (see function mdwt to find the structure of y)
  9. %       h : scaling filter
  10. %       L : number of levels. In the case of a 1D signal, length(x) must be
  11. %           divisible by 2^L; in the case of a 2D signal, the row and the
  12. %           column dimension must be divisible by 2^L.  If no argument is
  13. %           specified, a full inverse DWT is returned for maximal possible
  14. %           L.
  15. %
  16. %    Output:
  17. %       x : periodic reconstructed signal
  18. %       L : number of decomposition levels
  19. %
  20. %    1D Example:
  21. %       xin = makesig('LinChirp',8);
  22. %       h = daubcqf(4,'min');
  23. %       L = 1;
  24. %       [y,L] = mdwt(xin,h,L);
  25. %       [x,L] = midwt(y,h,L)
  26. %
  27. %    1D Example's  output:
  28. %
  29. %       x = 0.0491 0.1951 0.4276 0.7071 0.9415 0.9808 0.6716 0.0000
  30. %       L = 1
  31. %
  32. %    See also: mdwt, mrdwt, mirdwt
  33. %
  34. %
  35. %
  36. %File Name: midwt.m
  37. %Last Modification Date: 08/07/95 15:13:52
  38. %Current Version: midwt.m 2.4
  39. %File Creation Date: Wed Oct 19 10:51:58 1994
  40. %Author: Markus Lang  <lang@jazz.rice.edu>
  41. %
  42. %Copyright (c) 2000 RICE UNIVERSITY. All rights reserved.
  43. %Created by Markus Lang, Department of ECE, Rice University. 
  44. %
  45. %This software is distributed and licensed to you on a non-exclusive 
  46. %basis, free-of-charge. Redistribution and use in source and binary forms, 
  47. %with or without modification, are permitted provided that the following 
  48. %conditions are met:
  49. %
  50. %1. Redistribution of source code must retain the above copyright notice, 
  51. %   this list of conditions and the following disclaimer.
  52. %2. Redistribution in binary form must reproduce the above copyright notice, 
  53. %   this list of conditions and the following disclaimer in the 
  54. %   documentation and/or other materials provided with the distribution.
  55. %3. All advertising materials mentioning features or use of this software 
  56. %   must display the following acknowledgment: This product includes 
  57. %   software developed by Rice University, Houston, Texas and its contributors.
  58. %4. Neither the name of the University nor the names of its contributors 
  59. %   may be used to endorse or promote products derived from this software 
  60. %   without specific prior written permission.
  61. %
  62. %THIS SOFTWARE IS PROVIDED BY WILLIAM MARSH RICE UNIVERSITY, HOUSTON, TEXAS, 
  63. %AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, 
  64. %BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
  65. %FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RICE UNIVERSITY 
  66. %OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  67. %EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
  68. %PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
  69. %OR BUSINESS INTERRUPTIONS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  70. %WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
  71. %OTHERWISE), PRODUCT LIABILITY, OR OTHERWISE ARISING IN ANY WAY OUT OF THE 
  72. %USE OF THIS SOFTWARE,  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  73. %
  74. %For information on commercial licenses, contact Rice University's Office of 
  75. %Technology Transfer at techtran@rice.edu or (713) 348-6173
  76. %
  77. %Change History:
  78. %Modification #1
  79. %Mon Aug  7 11:52:33 CDT 1995
  80. %Rebecca Hindman <hindman@ece.rice.edu>
  81. %Added L to function line so that it can be displayed as an output
  82. %Thu Mar  2 13:07:11 CDT 2000
  83. %Ramesh Neelamani<neelsh@ece.rice.edu>
  84. %Revamped the help file
  85. %