dump_spect.h

来自「《无线通信系统仿真——c++使用模型》这本书的源代码」· C头文件 代码 · 共 19 行

H
19
字号
//
//  File = dump_spect.h
//

#ifndef _DUMP_SPECT_H_
#define _DUMP_SPECT_H_
#include <stdlib.h>
#include <fstream>
#include "math.h"
using namespace std;

void DumpSpectrum(  double *psd_est,
               int nsamps_in_psd,
               double delta_f,
               double freq_norm_factor,
               bool output_in_decibels,
               bool plot_two_sided,
               ofstream *psd_file);
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?