hamming.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:1k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = hamming.cpp
  3. //
  4. #include <math.h>
  5. #include "hamming.h"
  6. #include "misdefs.h"
  7. //========================================================
  8. HammingWindow::HammingWindow( int length )
  9.               :GenericWindow(length)
  10. {
  11.   GenerateWindow( length );
  12. }
  13. //========================================================
  14. void HammingWindow::GenerateWindow( int length )
  15. {
  16.  for(int n=0; n<Half_Length; n++)
  17.    {
  18.     if(length%2) // odd length
  19.       { 
  20.       Half_Lag_Win[n] = 0.54 + 0.46 * cos( double(TWO_PI)*n/(length-1));}
  21.     else
  22.       { Half_Lag_Win[n] = 0.54 + 0.46 * cos( (2*n+1)*PI/(length-1));}
  23.    }
  24.  return;