KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
hilbert.h
Go to the documentation of this file.
1 // hilbert.h - hilbert transform
3 // Author: Doron Tal (this code is based on the matlab (v5.3) 'hilbert.m')
4 // Date created: March, 2000
5 
6 #ifndef _HILBERT_H
7 #define _HILBERT_H
8 
9 namespace DTLib {
10 
11  // In-place hilbert transform on aInputVector.
12  void Hilbert(float *aInVector, const int Length);
13 
14 } // namespace DTLib {
15 
16 #endif /* #ifndef _HILBERT_H */
void Hilbert(float *aInVector, const int Length)
Definition: hilbert.cpp:17