qipp
2025-09-16 e7ac407a6aa40e94a34a772dee14e8d5fb55c45b
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