Complex number array struct, used in Fourier Transform functions.
More...
#include <dsp.h>
|
|
struct { |
|
double real |
| | Real part of the complex number.
|
| |
|
double imaginary |
| | Imaginary part of the complex number.
|
| |
| } * | complex |
| | Complex struct type array.
|
| |
|
complex_t * | pairs |
| | Complex number type array used with libFFTW.
|
| |
|
double * | buf |
| | Linear double array containing complex numbers.
|
| |