1
2
3
4
5
6
7
8
9
10
11
12
13
| #ifndef ALG_PLATFORM_X86_COMPLEX_H__
| #define ALG_PLATFORM_X86_COMPLEX_H__
|
| typedef struct
| {
| float re;
| float im;
| }complex_float, complex_double;
|
| complex_double cmlt(complex_double a, complex_double b);
| complex_double cadd(complex_double a, complex_double b);
|
| #endif
|
|