|
latest version v1.9 - last update 24 Nov 2005 |
|
Functions | |
| template<class T> | |
| T * | alloc_1d (const int &n1) |
| template<class T> | |
| void | free_1d (T *i) |
| template<class T> | |
| T ** | alloc_2d (const int &n1, const int &n2) |
| template<class T> | |
| void | free_2d (T **ii) |
| template<class T> | |
| void | vrdft (int n, int isgn, vector< T > &a, int *ip, T *w) |
| template<class T> | |
| void | rdft (int n, int isgn, T *a, int *ip, T *w) |
| template<class T> | |
| void | cdft (int n, int isgn, T *a, int *ip, T *w) |
The code has been adapted to use C++ and LTI-lib conventions. This functions will be used by the functors lti::realFFT and lti::realInvFFT
|
||||||||||
|
reserve memory for a n-dimensional vector of elements with type T
|
|
||||||||||||||||
|
reserve memory for a n1xn2-matrix of elementes of type T
|
|
||||||||||||||||||||||||||||
|
complex direct fourier transform
|
|
||||||||||
|
free memory of 1d array of elements with type T
|
|
||||||||||
|
free memory of 2d array of elements with type T
|
|
||||||||||||||||||||||||||||
|
real discrete fourier transform
|
|
||||||||||||||||||||||||||||
|
real discrete fourier transform for lti::vectors
|