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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = elliptical_proto.h
  3. //
  4. #ifndef _ELLIPTICAL_PROTO_H_
  5. #define _ELLIPTICAL_PROTO_H_
  6. #include "filter_proto.h"
  7. double ipow(double x, int m);
  8. class EllipticalPrototype : public AnalogFilterPrototype
  9. {
  10. public:
  11.   EllipticalPrototype(  int filt_order,
  12.                         double passband_ripple,
  13.                         double stopband_ripple,
  14.                         double selec_factor );
  15.   ~EllipticalPrototype(void);
  16. private:
  17.   //double Ripple;
  18.   
  19. };
  20. #endif