File: dgt_long.h

package info (click to toggle)
python-ltfatpy 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,412 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (50 lines) | stat: -rw-r--r-- 1,536 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
typedef struct
{
    ltfatInt a;
    ltfatInt M;
    ltfatInt L;
    ltfatInt W;
    ltfatInt c;
    ltfatInt h_a;
    dgt_phasetype ptype;
    LTFAT_FFTW(plan) p_before;
    LTFAT_FFTW(plan) p_after;
    LTFAT_FFTW(plan) p_veryend;
    LTFAT_REAL *sbuf;
    const LTFAT_COMPLEX *f;
    LTFAT_COMPLEX *gf;
    LTFAT_COMPLEX *cout;
    LTFAT_REAL *ff, *cf;

} LTFAT_NAME(dgt_long_plan);



LTFAT_EXTERN void
LTFAT_NAME_COMPLEX(dgt_long)(const LTFAT_COMPLEX *f, const LTFAT_COMPLEX *g,
                             const ltfatInt L, const ltfatInt W,  const ltfatInt a,
                             const ltfatInt M, const dgt_phasetype ptype,
                             LTFAT_COMPLEX *cout);

LTFAT_EXTERN void
LTFAT_NAME(dgt_long)(const LTFAT_REAL *f, const LTFAT_REAL *g,
                     const ltfatInt L, const ltfatInt W,  const ltfatInt a,
                     const ltfatInt M, const dgt_phasetype ptype,
                     LTFAT_COMPLEX *cout);


LTFAT_EXTERN LTFAT_NAME(dgt_long_plan)
LTFAT_NAME(dgt_long_init)(const LTFAT_COMPLEX *f, const LTFAT_COMPLEX *g,
                          const ltfatInt L, const ltfatInt W, const ltfatInt a,
                          const ltfatInt M, LTFAT_COMPLEX *cout,
                          const dgt_phasetype ptype, unsigned flags);

LTFAT_EXTERN void
LTFAT_NAME(dgt_long_execute)(const LTFAT_NAME(dgt_long_plan) plan);

LTFAT_EXTERN void
LTFAT_NAME(dgt_long_done)(LTFAT_NAME(dgt_long_plan) plan);


LTFAT_EXTERN void
LTFAT_NAME(dgt_walnut_plan)(LTFAT_NAME(dgt_long_plan) plan);