rbfilter/filter.h

27 wiersze
321 B
C
Czysty Zwykły widok Historia

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