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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = dump_spect.h
  3. //
  4. #ifndef _DUMP_SPECT_H_
  5. #define _DUMP_SPECT_H_
  6. #include <stdlib.h>
  7. #include <fstream>
  8. #include "math.h"
  9. using namespace std;
  10. void DumpSpectrum(  double *psd_est,
  11.                int nsamps_in_psd,
  12.                double delta_f,
  13.                double freq_norm_factor,
  14.                bool output_in_decibels,
  15.                bool plot_two_sided,
  16.                ofstream *psd_file);
  17. #endif