rbfilter/filter.h

36 wiersze
583 B
C

2018-05-28 10:07:53 +00:00
/******************************************************************************
filter.h
Copyright (c) Roger Burghall 2014..2017
******************************************************************************/
2018-05-27 14:10:28 +00:00
#ifndef FILTER_H
#define FILTER_H
#include <complex.h>
#include "calcs.h"
#define SHOW_FILE_COMPILING 0
class TFilter {
public:
complex pole[40];
void log(string);
void log(string, double);
void log(string, complex);
int poles;
char type;
int zeroes;
double fmax, tmax;
double step_resp[IMAX];
};
#endif