bessfunc.h
来自「digital filter designer s handbook heade」· C头文件 代码 · 共 18 行
H
18 行
//
// File = bessfunc.h
//
#ifndef _BESSFUNC_H_
#define _BESSFUNC_H_
#include "filtfunc.h"
#define MAX_BESSEL_ORDER 10
class BesselTransFunc : public FilterTransFunc
{
public:
// constructor to initialize for a specified filter order
BesselTransFunc( int order,
double passband_edge,
int norm_for_delay );
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?