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

波变换

开发平台:

Matlab

  1. function [out1,out2] = morlet(LB,UB,N,flagGUI)
  2. %MORLET Morlet wavelet.
  3. %   [PSI,X] = MORLET(LB,UB,N) returns values of 
  4. %   the Morlet wavelet on an N point regular grid 
  5. %   in the interval [LB,UB].
  6. %   Output arguments are the wavelet function PSI
  7. %   computed on the grid X, and the grid X.
  8. %
  9. %   This wavelet has [-4 4] as effective support.
  10. %
  11. %   See also WAVEINFO.
  12. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  13. %   Last Revision: 14-May-2003.
  14. %   Copyright 1995-2004 The MathWorks, Inc.
  15. % $Revision: 1.12.4.2 $
  16. % Compute values of the Morlet wavelet.
  17. out2 = linspace(LB,UB,N);        % wavelet support.
  18. out1 = exp(-(out2.^2)/2) .* cos(5*out2);