This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/math/dsp/fir/ComplexFactory.h
k-a-z-u 039f9c4cee refactored FIR filters
- real and complex variant
adjusted StepDetection2
2018-07-03 10:56:30 +02:00

32 lines
472 B
C++

#ifndef FIRFACTORY_H
#define FIRFACTORY_H
#include <vector>
#include <complex>
class FIRFactory {
float sRate_hz;
public:
/** ctor */
FIRFactory(float sRate_hz) : sRate_hz(sRate_hz) {
;
}
// static std::vector<float> getRealBandbass(float center_hz, float width_hz, float sRate_hz, int size) {
// }
// static std::vector<std::complex<float>> getComplexBandbass(float center_hz, float width_hz, float sRate_hz, int size) {
// }
}
#endif // FIRFACTORY_H