bessel_proto.h
来自「终于找到了bpsk信号的调制」· C头文件 代码 · 共 18 行
H
18 行
//
// File = bessel_proto.h
//
#ifndef _BESSEL_PROTO_H_
#define _BESSEL_PROTO_H_
#include "filter_proto.h"
#define MAX_BESSEL_ORDER 10
class BesselPrototype : public AnalogFilterPrototype
{
public:
// constructor to initialize for a specified filter order
BesselPrototype( int filt_order,
bool norm_for_delay );
~BesselPrototype();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?