source:
fact/tools/rootmacros/factfir.h@
18558
Last change on this file since 18558 was 13535, checked in by , 13 years ago | |
---|---|
File size: 328 bytes |
Line | |
---|---|
1 | #ifndef __FACTFIR_H |
2 | #define __FACTFIR_H |
3 | |
4 | #include <vector> |
5 | |
6 | |
7 | void factfir( |
8 | double b, |
9 | std::vector<double> &a, |
10 | int k, |
11 | std::vector<float> &source, |
12 | std::vector<float> &dest); |
13 | |
14 | void sliding_avg( |
15 | std::vector<float> &source, |
16 | std::vector<float> &dest, |
17 | unsigned int HalfWidth); |
18 | #endif // __FACTFIR_H |
Note:
See TracBrowser
for help on using the repository browser.