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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = nrz_theory.h
  3. //
  4. #ifndef _NRZ_THEORY_H_ 
  5. #define _NRZ_THEORY_H_
  6. void NrzPsd(  double bit_energy,
  7.               double bit_rate,
  8.               double beg_freq,
  9.               double end_freq,
  10.               int num_pts,
  11.               bool plot_in_db,
  12.               char* out_filename);
  13. void BiphasePsd(  double bit_energy,
  14.               double bit_rate,
  15.               double beg_freq,
  16.               double end_freq,
  17.               int num_pts,
  18.               bool plot_in_db,
  19.               char* out_filename);
  20. void MillerPsd(  double bit_energy,
  21.               double bit_rate,
  22.               double beg_freq,
  23.               double end_freq,
  24.               int num_pts,
  25.               bool plot_in_db,
  26.               char* out_filename);
  27. //void BpskBer( double beg_ebno,
  28. //              double end_ebno,
  29. //              int num_pts,
  30. //              char* out_filename);
  31. #endif