git-svn-id: http://moon:8086/svn/software/trunk/libsrc/fir@1 b431acfa-c32f-4a4a-93f1-934dc6c82436
13 lines
346 B
Plaintext
Executable File
13 lines
346 B
Plaintext
Executable File
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void LinearizePhase(double *Hk, double *hkReal, double *hkImag, unsigned N);
|
|
extern void FIRCalcFilterCoeffs(double *Hk, double *hkReal, double *hkImag, unsigned N);
|
|
extern void FIR(double *pReal, double *pImag, double *pHreal, double *pHimag, unsigned N);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|