elliptical_proto.h

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

H
27
字号
//
//  File = elliptical_proto.h
//

#ifndef _ELLIPTICAL_PROTO_H_
#define _ELLIPTICAL_PROTO_H_

#include "filter_proto.h"


double ipow(double x, int m);
class EllipticalPrototype : public AnalogFilterPrototype
{
public:
  EllipticalPrototype(  int filt_order,
                        double passband_ripple,
                        double stopband_ripple,
                        double selec_factor );

  ~EllipticalPrototype(void);
private:
  //double Ripple;
  
};

#endif

⌨️ 快捷键说明

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