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
2018-10-25 11:50:12 +02:00

42 lines
807 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* © Copyright 2014 Urheberrechtshinweis
* Alle Rechte vorbehalten / All Rights Reserved
*
* Programmcode ist urheberrechtlich geschuetzt.
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
* Keine Verwendung ohne explizite Genehmigung.
* (vgl. § 106 ff UrhG / § 97 UrhG)
*/
#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