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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = fsk_theory.h
  3. //
  4. #ifndef _FSK_THEORY_H_ 
  5. #define _FSK_THEORY_H_
  6. void FskCorrCoeff( double bit_intvl,
  7.                     double beg_freq,
  8.                     double end_freq,
  9.                     int num_pts,
  10.                     char* out_filename);
  11. void FskPsd( double carrier_freq,
  12.               double symb_energy,
  13.               double symb_rate,
  14.               double beg_freq,
  15.               double end_freq,
  16.               int num_pts,
  17.               bool plot_in_db,
  18.               char* out_filename);
  19. void FskBer( double beg_ebno,
  20.               double end_ebno,
  21.               int num_pts,
  22.               char* out_filename);
  23. #endif