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

波变换

开发平台:

Matlab

  1. function y = meyeraux(x);
  2. %MEYERAUX Meyer wavelet auxiliary function.
  3. %   Y = MEYERAUX(X) returns values of the auxiliary
  4. %   function used for Meyer wavelet generation evaluated
  5. %   at the elements of the vector or matrix X.
  6. %
  7. %   The function is 35*x^4 - 84*x^5 + 70*x^6 - 20*x^7.
  8. %
  9. %   See also MEYER.
  10. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 12-Mar-96.
  11. %   Last Revision: 14-May-2003.
  12. %   Copyright 1995-2004 The MathWorks, Inc.
  13. % $Revision: 1.10.4.2 $
  14. % Auxiliary function values.
  15. p = [-20 70 -84 35 0 0 0 0];
  16. y = polyval(p,x);