mirror of
https://github.com/AlexandreRouma/dsp2.git
synced 2026-04-18 14:52:43 +00:00
20 lines
297 B
C++
20 lines
297 B
C++
#include "dsp/taps.h"
|
|
#include "dsp/taps/low_pass.h"
|
|
#include "dsp/complex.h"
|
|
#include "dsp/stream.h"
|
|
#include <stdio.h>
|
|
|
|
struct TestStruct {
|
|
bool a;
|
|
int b;
|
|
};
|
|
|
|
int main() {
|
|
dsp::taps::LowPass lp(3000, 100, 15000);
|
|
|
|
float test = lp[0];
|
|
|
|
dsp::Stream<float> str;
|
|
|
|
return 0;
|
|
} |