"wrappers/python/vscode:/vscode.git/clone" did not exist on "ab81ee068799836e364cad74f2a39da307f67c42"
fftpack.cpp 28.1 KB
Newer Older
1
/*
2
3
4
5
6
7
8
9
10
11
12
13
14
15
* This file contains a Fortran to C translation of the 1D transformations
* based on the original FFTPACK, written by paul n swarztrauber
* at the national center for atmospheric research and available
* at www.netlib.org. FFTPACK is in the public domain.
*
* Higher-dimension transforms written by Erik Lindahl, 2008-2009.
* Just as FFTPACK, this file may be redistributed freely, and can be
* considered to be in the public domain. 
*
* Any errors in this (threadsafe, but not threaded) C version
* are probably due to the f2c translator, or hacks by Erik Lindahl,
* rather than FFTPACK. If you find a bug, it would be great if you could
* drop a line to lindahl@cbr.su.se and let me know about it!
*/
16
17
18
19
20
21
22
23
24
25
26

#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>


#include "fftpack.h"


27
/** Contents of the FFTPACK fft datatype.
28
 *
29
 *  FFTPACK only does 1d transforms, so we use a pointers to another fft for
30
31
32
33
34
35
36
37
38
39
 *  the transform in the next dimension.
 * Thus, a 3d-structure contains a pointer to a 2d one, which in turns contains
 * a pointer to a 1d. The 1d structure has next==NULL.
 */
struct fftpack
{
    int                    ndim;     /**< Dimensions, including our subdimensions.  */
    int                    n;        /**< Number of points in this dimension.       */
    int                    ifac[15]; /**< 15 bytes needed for cfft and rfft         */
    struct fftpack *       next;     /**< Pointer to next dimension, or NULL.       */
peastman's avatar
peastman committed
40
    double *               work;     /**< 1st 4n reserved for cfft, 1st 2n for rfft */
41
42
43
44
45
46
47
48
49
};








50
static void
peastman's avatar
peastman committed
51
52
53
54
55
56
fftpack_passf2(int    ido,
               int    l1,
               double cc[],
               double ch[],
               double wa1[],
               int    isign)
57
58
{
    int i, k, ah, ac;
peastman's avatar
peastman committed
59
    double ti2, tr2;
60

61
62
    if (ido <= 2)
    {
63
        for (k=0; k<l1; k++)
64
65
66
67
68
69
70
71
        {
            ah = k*ido;
            ac = 2*k*ido;
            ch[ah]              = cc[ac]   + cc[ac + ido];
            ch[ah + ido*l1]     = cc[ac]   - cc[ac + ido];
            ch[ah+1]            = cc[ac+1] + cc[ac + ido + 1];
            ch[ah + ido*l1 + 1] = cc[ac+1] - cc[ac + ido + 1];
        }
72
    }
73
74
    else
    {
75
        for (k=0; k<l1; k++)
76
        {
77
            for (i=0; i<ido-1; i+=2)
78
79
80
81
82
83
84
85
86
87
88
89
            {
                ah              = i + k*ido;
                ac              = i + 2*k*ido;
                ch[ah]          = cc[ac] + cc[ac + ido];
                tr2             = cc[ac] - cc[ac + ido];
                ch[ah+1]        = cc[ac+1] + cc[ac + 1 + ido];
                ti2             = cc[ac+1] - cc[ac + 1 + ido];
                ch[ah+l1*ido+1] = wa1[i]*ti2 + isign*wa1[i+1]*tr2;
                ch[ah+l1*ido]   = wa1[i]*tr2 - isign*wa1[i+1]*ti2;
            }
        }
    }
90
}
91
92
93



94
static void
peastman's avatar
peastman committed
95
96
97
98
99
100
101
fftpack_passf3(int    ido,
               int    l1,
               double cc[],
               double ch[],
               double wa1[],
               double wa2[],
               int    isign)
102
{
peastman's avatar
peastman committed
103
104
    const double taur = -0.5;
    const double taui = 0.866025403784439;
105

106
    int i, k, ac, ah;
peastman's avatar
peastman committed
107
    double ci2, ci3, di2, di3, cr2, cr3, dr2, dr3, ti2, tr2;
108
109

    if (ido == 2)
110
    {
111
        for (k=1; k<=l1; k++)
112
113
114
115
116
117
        {
            ac = (3*k - 2)*ido;
            tr2 = cc[ac] + cc[ac + ido];
            cr2 = cc[ac - ido] + taur*tr2;
            ah = (k - 1)*ido;
            ch[ah] = cc[ac - ido] + tr2;
118

119
120
121
            ti2 = cc[ac + 1] + cc[ac + ido + 1];
            ci2 = cc[ac - ido + 1] + taur*ti2;
            ch[ah + 1] = cc[ac - ido + 1] + ti2;
122

123
124
125
126
127
128
129
            cr3 = isign*taui*(cc[ac] - cc[ac + ido]);
            ci3 = isign*taui*(cc[ac + 1] - cc[ac + ido + 1]);
            ch[ah + l1*ido] = cr2 - ci3;
            ch[ah + 2*l1*ido] = cr2 + ci3;
            ch[ah + l1*ido + 1] = ci2 + cr3;
            ch[ah + 2*l1*ido + 1] = ci2 - cr3;
        }
130
    }
131
132
    else
    {
133
        for (k=1; k<=l1; k++)
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
        {
            for (i=0; i<ido-1; i+=2)
            {
                ac = i + (3*k - 2)*ido;
                tr2 = cc[ac] + cc[ac + ido];
                cr2 = cc[ac - ido] + taur*tr2;
                ah = i + (k-1)*ido;
                ch[ah] = cc[ac - ido] + tr2;
                ti2 = cc[ac + 1] + cc[ac + ido + 1];
                ci2 = cc[ac - ido + 1] + taur*ti2;
                ch[ah + 1] = cc[ac - ido + 1] + ti2;
                cr3 = isign*taui*(cc[ac] - cc[ac + ido]);
                ci3 = isign*taui*(cc[ac + 1] - cc[ac + ido + 1]);
                dr2 = cr2 - ci3;
                dr3 = cr2 + ci3;
                di2 = ci2 + cr3;
                di3 = ci2 - cr3;
                ch[ah + l1*ido + 1] = wa1[i]*di2 + isign*wa1[i+1]*dr2;
                ch[ah + l1*ido] = wa1[i]*dr2 - isign*wa1[i+1]*di2;
                ch[ah + 2*l1*ido + 1] = wa2[i]*di3 + isign*wa2[i+1]*dr3;
                ch[ah + 2*l1*ido] = wa2[i]*dr3 - isign*wa2[i+1]*di3;
            }
        }
    }
158
}
159
160


161
static void
peastman's avatar
peastman committed
162
163
164
165
166
167
168
169
fftpack_passf4(int    ido,
               int    l1,
               double cc[],
               double ch[],
               double wa1[],
               double wa2[],
               double wa3[],
               int    isign)
170
171
{
    int i, k, ac, ah;
peastman's avatar
peastman committed
172
    double ci2, ci3, ci4, cr2, cr3, cr4, ti1, ti2, ti3, ti4, tr1, tr2, tr3, tr4;
173
174

    if (ido == 2)
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
    {
        for (k=0; k<l1; k++)
        {
            ac = 4*k*ido + 1;
            ti1 = cc[ac] - cc[ac + 2*ido];
            ti2 = cc[ac] + cc[ac + 2*ido];
            tr4 = cc[ac + 3*ido] - cc[ac + ido];
            ti3 = cc[ac + ido] + cc[ac + 3*ido];
            tr1 = cc[ac - 1] - cc[ac + 2*ido - 1];
            tr2 = cc[ac - 1] + cc[ac + 2*ido - 1];
            ti4 = cc[ac + ido - 1] - cc[ac + 3*ido - 1];
            tr3 = cc[ac + ido - 1] + cc[ac + 3*ido - 1];
            ah = k*ido;
            ch[ah] = tr2 + tr3;
            ch[ah + 2*l1*ido] = tr2 - tr3;
            ch[ah + 1] = ti2 + ti3;
            ch[ah + 2*l1*ido + 1] = ti2 - ti3;
            ch[ah + l1*ido] = tr1 + isign*tr4;
            ch[ah + 3*l1*ido] = tr1 - isign*tr4;
            ch[ah + l1*ido + 1] = ti1 + isign*ti4;
            ch[ah + 3*l1*ido + 1] = ti1 - isign*ti4;
        }
197
    }
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
    else
    {
        for (k=0; k<l1; k++)
        {
            for (i=0; i<ido-1; i+=2)
            {
                ac = i + 1 + 4*k*ido;
                ti1 = cc[ac] - cc[ac + 2*ido];
                ti2 = cc[ac] + cc[ac + 2*ido];
                ti3 = cc[ac + ido] + cc[ac + 3*ido];
                tr4 = cc[ac + 3*ido] - cc[ac + ido];
                tr1 = cc[ac - 1] - cc[ac + 2*ido - 1];
                tr2 = cc[ac - 1] + cc[ac + 2*ido - 1];
                ti4 = cc[ac + ido - 1] - cc[ac + 3*ido - 1];
                tr3 = cc[ac + ido - 1] + cc[ac + 3*ido - 1];
                ah = i + k*ido;
                ch[ah] = tr2 + tr3;
                cr3 = tr2 - tr3;
                ch[ah + 1] = ti2 + ti3;
                ci3 = ti2 - ti3;
                cr2 = tr1 + isign*tr4;
                cr4 = tr1 - isign*tr4;
                ci2 = ti1 + isign*ti4;
                ci4 = ti1 - isign*ti4;
                ch[ah + l1*ido] = wa1[i]*cr2 - isign*wa1[i + 1]*ci2;
                ch[ah + l1*ido + 1] = wa1[i]*ci2 + isign*wa1[i + 1]*cr2;
                ch[ah + 2*l1*ido] = wa2[i]*cr3 - isign*wa2[i + 1]*ci3;
                ch[ah + 2*l1*ido + 1] = wa2[i]*ci3 + isign*wa2[i + 1]*cr3;
                ch[ah + 3*l1*ido] = wa3[i]*cr4 -isign*wa3[i + 1]*ci4;
                ch[ah + 3*l1*ido + 1] = wa3[i]*ci4 + isign*wa3[i + 1]*cr4;
            }
        }
    }
231
}
232
233


234
static void
peastman's avatar
peastman committed
235
236
237
238
239
240
241
242
243
fftpack_passf5(int    ido,
               int    l1,
               double cc[],
               double ch[],
               double wa1[],
               double wa2[],
               double wa3[],
               double wa4[],
               int    isign)
244
{
peastman's avatar
peastman committed
245
246
247
248
    const double tr11 = 0.309016994374947;
    const double ti11 = 0.951056516295154;
    const double tr12 = -0.809016994374947;
    const double ti12 = 0.587785252292473;
249

250
    int i, k, ac, ah;
peastman's avatar
peastman committed
251
    double ci2, ci3, ci4, ci5, di3, di4, di5, di2, cr2, cr3, cr5, cr4, ti2, ti3,
252
        ti4, ti5, dr3, dr4, dr5, dr2, tr2, tr3, tr4, tr5;
253
254

    if (ido == 2)
255
    {
256
        for (k = 1; k <= l1; ++k)
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
        {
            ac = (5*k - 4)*ido + 1;
            ti5 = cc[ac] - cc[ac + 3*ido];
            ti2 = cc[ac] + cc[ac + 3*ido];
            ti4 = cc[ac + ido] - cc[ac + 2*ido];
            ti3 = cc[ac + ido] + cc[ac + 2*ido];
            tr5 = cc[ac - 1] - cc[ac + 3*ido - 1];
            tr2 = cc[ac - 1] + cc[ac + 3*ido - 1];
            tr4 = cc[ac + ido - 1] - cc[ac + 2*ido - 1];
            tr3 = cc[ac + ido - 1] + cc[ac + 2*ido - 1];
            ah = (k - 1)*ido;
            ch[ah] = cc[ac - ido - 1] + tr2 + tr3;
            ch[ah + 1] = cc[ac - ido] + ti2 + ti3;
            cr2 = cc[ac - ido - 1] + tr11*tr2 + tr12*tr3;
            ci2 = cc[ac - ido] + tr11*ti2 + tr12*ti3;
            cr3 = cc[ac - ido - 1] + tr12*tr2 + tr11*tr3;
            ci3 = cc[ac - ido] + tr12*ti2 + tr11*ti3;
            cr5 = isign*(ti11*tr5 + ti12*tr4);
            ci5 = isign*(ti11*ti5 + ti12*ti4);
            cr4 = isign*(ti12*tr5 - ti11*tr4);
            ci4 = isign*(ti12*ti5 - ti11*ti4);
            ch[ah + l1*ido] = cr2 - ci5;
            ch[ah + 4*l1*ido] = cr2 + ci5;
            ch[ah + l1*ido + 1] = ci2 + cr5;
            ch[ah + 2*l1*ido + 1] = ci3 + cr4;
            ch[ah + 2*l1*ido] = cr3 - ci4;
            ch[ah + 3*l1*ido] = cr3 + ci4;
            ch[ah + 3*l1*ido + 1] = ci3 - cr4;
            ch[ah + 4*l1*ido + 1] = ci2 - cr5;
        }
287
    }
288
289
    else
    {
290
        for (k=1; k<=l1; k++)
291
        {
292
            for (i=0; i<ido-1; i+=2)
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
            {
                ac = i + 1 + (k*5 - 4)*ido;
                ti5 = cc[ac] - cc[ac + 3*ido];
                ti2 = cc[ac] + cc[ac + 3*ido];
                ti4 = cc[ac + ido] - cc[ac + 2*ido];
                ti3 = cc[ac + ido] + cc[ac + 2*ido];
                tr5 = cc[ac - 1] - cc[ac + 3*ido - 1];
                tr2 = cc[ac - 1] + cc[ac + 3*ido - 1];
                tr4 = cc[ac + ido - 1] - cc[ac + 2*ido - 1];
                tr3 = cc[ac + ido - 1] + cc[ac + 2*ido - 1];
                ah = i + (k - 1)*ido;
                ch[ah] = cc[ac - ido - 1] + tr2 + tr3;
                ch[ah + 1] = cc[ac - ido] + ti2 + ti3;
                cr2 = cc[ac - ido - 1] + tr11*tr2 + tr12*tr3;
                ci2 = cc[ac - ido] + tr11*ti2 + tr12*ti3;
                cr3 = cc[ac - ido - 1] + tr12*tr2 + tr11*tr3;
                ci3 = cc[ac - ido] + tr12*ti2 + tr11*ti3;
                cr5 = isign*(ti11*tr5 + ti12*tr4);
                ci5 = isign*(ti11*ti5 + ti12*ti4);
                cr4 = isign*(ti12*tr5 - ti11*tr4);
                ci4 = isign*(ti12*ti5 - ti11*ti4);
                dr3 = cr3 - ci4;
                dr4 = cr3 + ci4;
                di3 = ci3 + cr4;
                di4 = ci3 - cr4;
                dr5 = cr2 + ci5;
                dr2 = cr2 - ci5;
                di5 = ci2 - cr5;
                di2 = ci2 + cr5;
                ch[ah + l1*ido] = wa1[i]*dr2 - isign*wa1[i+1]*di2;
                ch[ah + l1*ido + 1] = wa1[i]*di2 + isign*wa1[i+1]*dr2;
                ch[ah + 2*l1*ido] = wa2[i]*dr3 - isign*wa2[i+1]*di3;
                ch[ah + 2*l1*ido + 1] = wa2[i]*di3 + isign*wa2[i+1]*dr3;
                ch[ah + 3*l1*ido] = wa3[i]*dr4 - isign*wa3[i+1]*di4;
                ch[ah + 3*l1*ido + 1] = wa3[i]*di4 + isign*wa3[i+1]*dr4;
                ch[ah + 4*l1*ido] = wa4[i]*dr5 - isign*wa4[i+1]*di5;
                ch[ah + 4*l1*ido + 1] = wa4[i]*di5 + isign*wa4[i+1]*dr5;
            }
        }
    }
333
}
334
335


336
static void
peastman's avatar
peastman committed
337
338
339
340
341
342
343
344
345
fftpack_passf(int*   nac,
              int    ido,
              int    ip,
              int    l1,
              int    idl1,
              double cc[],
              double ch[],
              double wa[],
              int    isign)
346
347
{
    int idij, idlj, idot, ipph, i, j, k, l, jc, lc, ik, nt, idj, idl, inc,idp;
peastman's avatar
peastman committed
348
    double wai, war;
349

350
351
352
353
    idot = ido / 2;
    nt = ip*idl1;
    ipph = (ip + 1) / 2;
    idp = ip*ido;
354
    if (ido >= l1)
355
356
357
358
    {
        for (j=1; j<ipph; j++)
        {
            jc = ip - j;
359
            for (k=0; k<l1; k++)
360
            {
361
                for (i=0; i<ido; i++)
362
363
364
365
366
367
368
369
370
                {
                    ch[i + (k + j*l1)*ido]  = cc[i + (j + k*ip)*ido] + cc[i + (jc + k*ip)*ido];
                    ch[i + (k + jc*l1)*ido] = cc[i + (j + k*ip)*ido] - cc[i + (jc + k*ip)*ido];
                }
            }
        }
        for (k=0; k<l1; k++)
            for (i=0; i<ido; i++)
                ch[i + k*ido] = cc[i + k*ip*ido];
371
    }
372
373
    else
    {
374
        for (j=1; j<ipph; j++)
375
376
        {
            jc = ip - j;
377
            for (i=0; i<ido; i++)
378
            {
379
                for (k=0; k<l1; k++)
380
381
382
383
384
385
386
387
388
389
                {
                    ch[i + (k + j*l1)*ido] =  cc[i + (j + k*ip)*ido] + cc[i + (jc + k*ip)*ido];
                    ch[i + (k + jc*l1)*ido] = cc[i + (j + k*ip)*ido] - cc[i + (jc + k*ip)*ido];
                }
            }
        }
        for (i=0; i<ido; i++)
            for (k=0; k<l1; k++)
                ch[i + k*ido] = cc[i + k*ip*ido];
    }
390

391
392
    idl = 2 - ido;
    inc = 0;
393
    for (l=1; l<ipph; l++)
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
    {
        lc = ip - l;
        idl += ido;
        for (ik=0; ik<idl1; ik++)
        {
            cc[ik + l*idl1] = ch[ik] + wa[idl - 2]*ch[ik + idl1];
            cc[ik + lc*idl1] = isign*wa[idl-1]*ch[ik + (ip-1)*idl1];
        }
        idlj = idl;
        inc += ido;
        for (j=2; j<ipph; j++)
        {
            jc = ip - j;
            idlj += inc;
            if (idlj > idp) idlj -= idp;
            war = wa[idlj - 2];
            wai = wa[idlj-1];
            for (ik=0; ik<idl1; ik++)
            {
                cc[ik + l*idl1] += war*ch[ik + j*idl1];
                cc[ik + lc*idl1] += isign*wai*ch[ik + jc*idl1];
            }
        }
    }
    for (j=1; j<ipph; j++)
        for (ik=0; ik<idl1; ik++)
            ch[ik] += ch[ik + j*idl1];
421
    for (j=1; j<ipph; j++)
422
423
    {
        jc = ip - j;
424
        for (ik=1; ik<idl1; ik+=2)
425
426
427
428
429
430
431
432
        {
            ch[ik - 1 + j*idl1] = cc[ik - 1 + j*idl1] - cc[ik + jc*idl1];
            ch[ik - 1 + jc*idl1] = cc[ik - 1 + j*idl1] + cc[ik + jc*idl1];
            ch[ik + j*idl1] = cc[ik + j*idl1] + cc[ik - 1 + jc*idl1];
            ch[ik + jc*idl1] = cc[ik + j*idl1] - cc[ik - 1 + jc*idl1];
        }
    }
    *nac = 1;
433
    if (ido == 2)
434
435
436
437
438
439
440
441
        return;
    *nac = 0;
    for (ik=0; ik<idl1; ik++)
    {
        cc[ik] = ch[ik];
    }
    for (j=1; j<ip; j++)
    {
442
        for (k=0; k<l1; k++)
443
444
445
446
447
        {
            cc[(k + j*l1)*ido + 0] = ch[(k + j*l1)*ido + 0];
            cc[(k + j*l1)*ido + 1] = ch[(k + j*l1)*ido + 1];
        }
    }
448
    if (idot <= l1)
449
450
451
452
453
    {
        idij = 0;
        for (j=1; j<ip; j++)
        {
            idij += 2;
454
            for (i=3; i<ido; i+=2)
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
            {
                idij += 2;
                for (k=0; k<l1; k++)
                {
                    cc[i - 1 + (k + j*l1)*ido] =
                    wa[idij - 2]*ch[i - 1 + (k + j*l1)*ido] -
                    isign*wa[idij-1]*ch[i + (k + j*l1)*ido];
                    cc[i + (k + j*l1)*ido] =
                        wa[idij - 2]*ch[i + (k + j*l1)*ido] +
                        isign*wa[idij-1]*ch[i - 1 + (k + j*l1)*ido];
                }
            }
        }
    }
    else
    {
        idj = 2 - ido;
472
        for (j=1; j<ip; j++)
473
474
        {
            idj += ido;
475
            for (k = 0; k < l1; k++)
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
            {
                idij = idj;
                for (i=3; i<ido; i+=2)
                {
                    idij += 2;
                    cc[i - 1 + (k + j*l1)*ido] =
                        wa[idij - 2]*ch[i - 1 + (k + j*l1)*ido] -
                        isign*wa[idij-1]*ch[i + (k + j*l1)*ido];
                    cc[i + (k + j*l1)*ido] =
                        wa[idij - 2]*ch[i + (k + j*l1)*ido] +
                        isign*wa[idij-1]*ch[i - 1 + (k + j*l1)*ido];
                }
            }
        }
    }
491
}
492
493
494
495
496





497
static void
peastman's avatar
peastman committed
498
499
500
501
502
503
fftpack_cfftf1(int    n,
               double c[],
               double ch[],
               double wa[],
               int    ifac[15],
               int    isign)
504
505
506
507
{
    int idot, i;
    int k1, l1, l2;
    int na, nf, ip, iw, ix2, ix3, ix4, nac, ido, idl1;
peastman's avatar
peastman committed
508
    double *cinput, *coutput;
509
510
511
512
    nf = ifac[1];
    na = 0;
    l1 = 1;
    iw = 0;
513
514

    for (k1=2; k1<=nf+1; k1++)
515
516
517
518
519
520
    {
        ip = ifac[k1];
        l2 = ip*l1;
        ido = n / l2;
        idot = ido + ido;
        idl1 = idot*l1;
521
        if (na)
522
523
524
525
        {
            cinput = ch;
            coutput = c;
        }
526
        else
527
528
529
530
        {
            cinput = c;
            coutput = ch;
        }
531
        switch (ip)
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
        {
            case 4:
                ix2 = iw + idot;
                ix3 = ix2 + idot;
                fftpack_passf4(idot, l1, cinput, coutput, &wa[iw], &wa[ix2], &wa[ix3], isign);
                na = !na;
                break;
            case 2:
                fftpack_passf2(idot, l1, cinput, coutput, &wa[iw], isign);
                na = !na;
                break;
            case 3:
                ix2 = iw + idot;
                fftpack_passf3(idot, l1, cinput, coutput, &wa[iw], &wa[ix2], isign);
                na = !na;
                break;
            case 5:
                ix2 = iw + idot;
                ix3 = ix2 + idot;
                ix4 = ix3 + idot;
                fftpack_passf5(idot, l1, cinput, coutput, &wa[iw], &wa[ix2], &wa[ix3], &wa[ix4], isign);
                na = !na;
                break;
            default:
                fftpack_passf(&nac, idot, ip, l1, idl1, cinput, coutput, &wa[iw], isign);
                if (nac != 0) na = !na;
        }
        l1 = l2;
        iw += (ip - 1)*idot;
    }
562
    if (na == 0)
563
        return;
564
    for (i=0; i<2*n; i++)
565
566
567
568
569
570
        c[i] = ch[i];
}




571
static void
572
573
574
575
576
577
578
579
580
581
582
583
fftpack_factorize(int    n,
                  int    ifac[15])
{
    static const int ntryh[4] = { 3,4,2,5 };
    int ntry=3, i, j=0, ib, nf=0, nl=n, nq, nr;

startloop:
    if (j < 4)
        ntry = ntryh[j];
    else
        ntry+= 2;
    j++;
584
    do
585
586
587
588
589
590
591
    {
        nq = nl / ntry;
        nr = nl - ntry*nq;
        if (nr != 0) goto startloop;
        nf++;
        ifac[nf + 1] = ntry;
        nl = nq;
592
        if (ntry == 2 && nf != 1)
593
        {
594
            for (i=2; i<=nf; i++)
595
596
597
598
599
600
            {
                ib = nf - i + 2;
                ifac[ib + 1] = ifac[ib];
            }
            ifac[2] = 2;
        }
601
    }
602
603
604
605
606
607
608
    while (nl != 1);
    ifac[0] = n;
    ifac[1] = nf;
}


static void
peastman's avatar
peastman committed
609
610
611
fftpack_cffti1(int    n,
               double wa[],
               int    ifac[15])
612
{
peastman's avatar
peastman committed
613
614
    const double twopi = 6.28318530717959;
    double arg, argh, argld, fi;
615
616
617
618
619
620
621
    int idot, i, j;
    int i1, k1, l1, l2;
    int ld, ii, nf, ip;
    int ido, ipm;

    fftpack_factorize(n,ifac);
    nf = ifac[1];
peastman's avatar
peastman committed
622
    argh = twopi/n;
623
624
    i = 1;
    l1 = 1;
625
    for (k1=1; k1<=nf; k1++)
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
    {
        ip = ifac[k1+1];
        ld = 0;
        l2 = l1*ip;
        ido = n / l2;
        idot = ido + ido + 2;
        ipm = ip - 1;
        for (j=1; j<=ipm; j++)
        {
            i1 = i;
            wa[i-1] = 1;
            wa[i] = 0;
            ld += l1;
            fi = 0;
            argld = ld*argh;
641
            for (ii=4; ii<=idot; ii+=2)
642
643
644
645
646
647
648
            {
                i+= 2;
                fi+= 1;
                arg = fi*argld;
                wa[i-1] = cos(arg);
                wa[i] = sin(arg);
            }
649
            if (ip > 5)
650
651
652
653
654
655
656
            {
                wa[i1-1] = wa[i-1];
                wa[i1] = wa[i];
            }
        }
        l1 = l2;
    }
657
}
658
659
660
661
662
663
664
665
666
667
668
669
670
671








static int
fftpack_transpose_2d(t_complex *          in_data,
                     t_complex *          out_data,
                     int                  nx,
                     int                  ny)
{
672
673
    t_complex *  src;
    int          i,j;
674

675
    if (nx<2 || ny<2)
676
    {
677
        if (in_data != out_data)
678
679
680
681
682
        {
            memcpy(out_data,in_data,sizeof(t_complex)*nx*ny);
        }
        return 0;
    }
683

684
    if (in_data == out_data)
685
686
687
688
689
690
691
692
693
    {
        src = (t_complex *)malloc(sizeof(t_complex)*nx*ny);
        memcpy(src,in_data,sizeof(t_complex)*nx*ny);
    }
    else
    {
        src = in_data;
    }

694
    for (i=0;i<nx;i++)
695
    {
696
        for (j=0;j<ny;j++)
697
698
699
700
701
702
        {
            out_data[j*nx+i].re = src[i*ny+j].re;
            out_data[j*nx+i].im = src[i*ny+j].im;
        }
    }

703
    if (src != in_data)
704
705
706
707
    {
        free(src);
    }
    return 0;
708
709
710
711
712
713
}



static int
fftpack_transpose_2d_nelem(t_complex *          in_data,
714
715
716
                           t_complex *          out_data,
                           int                  nx,
                           int                  ny,
717
718
                           int                  nelem)
{
719
720
721
    t_complex *   src;
    int           ncopy;
    int           i,j;
722

723
    ncopy = nelem*sizeof(t_complex);
724

725
    if (nx<2 || ny<2)
726
    {
727
        if (in_data != out_data)
728
729
730
731
732
        {
            memcpy(out_data,in_data,nx*ny*ncopy);
        }
        return 0;
    }
733

734
    if (in_data == out_data)
735
736
737
738
739
740
741
742
743
    {
        src = (t_complex *)malloc(nx*ny*ncopy);
        memcpy(src,in_data,nx*ny*ncopy);
    }
    else
    {
        src = in_data;
    }

744
    for (i=0;i<nx;i++)
745
    {
746
        for (j=0;j<ny;j++)
747
748
749
750
751
        {
            memcpy(out_data + (j*nx+i)*nelem , src + (i*ny+j)*nelem , ncopy);
        }
    }

752
    if (src != in_data)
753
754
755
756
    {
        free(src);
    }
    return 0;
757
758
759
760
761
762
763
764
765
766
767
768
}






int
fftpack_init_1d(fftpack_t *        pfft,
                int                nx)
{
    fftpack_t    fft;
769

770
    if (pfft==NULL)
771
772
773
774
775
    {
        fprintf(stderr,"Fatal error - Invalid FFT opaque type pointer.");
        return EINVAL;
    }
    *pfft = NULL;
776

777
    if ((fft = (struct fftpack *)malloc(sizeof(struct fftpack))) == NULL)
778
779
    {
        return ENOMEM;
780
781
    }

782
783
    fft->next = NULL;
    fft->n    = nx;
784

785
    /* Need 4*n storage for 1D complex FFT */
peastman's avatar
peastman committed
786
    if ((fft->work = (double *)malloc(sizeof(double)*(4*nx))) == NULL)
787
788
789
790
791
    {
        free(fft);
        return ENOMEM;
    }

792
    if (fft->n>1)
793
        fftpack_cffti1(nx,fft->work,fft->ifac);
794

795
796
797
798
799
800
801
802
803
804
805
806
807
808
    *pfft = fft;
    return 0;
};




int
fftpack_init_2d(fftpack_t *        pfft,
                int                nx,
                int                ny)
{
    fftpack_t     fft;
    int           rc;
809

810
    if (pfft==NULL)
811
812
813
814
815
816
817
    {
        fprintf(stderr,"Fatal error - Invalid FFT opaque type pointer.");
        return EINVAL;
    }
    *pfft = NULL;

    /* Create the X transform */
818
    if ((rc = fftpack_init_1d(&fft,nx)) != 0)
819
820
    {
        return rc;
821
822
    }

823
    /* Create Y transform as a link from X */
824
    if ((rc=fftpack_init_1d(&(fft->next),ny)) != 0)
825
826
827
828
    {
        free(fft);
        return rc;
    }
829

830
831
832
833
834
835
836
837
838
839
840
841
842
843
    *pfft = fft;
    return 0;
};



int
fftpack_init_3d(fftpack_t *        pfft,
                int                nx,
                int                ny,
                int                nz)
{
    fftpack_t     fft;
    int           rc;
844

845
    if (pfft==NULL)
846
847
848
849
850
851
852
853
    {
        fprintf(stderr,"Fatal error - Invalid FFT opaque type pointer.");
        return EINVAL;
    }
    *pfft = NULL;

    /* Create the X transform */

854
    if ((fft = (struct fftpack *)malloc(sizeof(struct fftpack))) == NULL)
855
856
    {
        return ENOMEM;
857
    }
858
859

    fft->n    = nx;
860

861
862
    /* Need 4*nx storage for 1D complex FFT.
     */
peastman's avatar
peastman committed
863
    if ((fft->work = (double *)malloc(sizeof(double)*(4*nx))) == NULL)
864
865
866
867
    {
        free(fft);
        return ENOMEM;
    }
868

869
    fftpack_cffti1(nx,fft->work,fft->ifac);
870

871
    /* Create 2D Y/Z transforms as a link from X */
872
    if ((rc=fftpack_init_2d(&(fft->next),ny,nz)) != 0)
873
874
875
876
    {
        free(fft);
        return rc;
    }
877

878
879
    *pfft = fft;

880
    return 0;
881
882
883
};


884
int
885
886
887
888
889
fftpack_exec_1d          (fftpack_t                  fft,
                          enum fftpack_direction     dir,
                          t_complex *                in_data,
                          t_complex *                out_data)
{
peastman's avatar
peastman committed
890
891
892
    int i, n;
    double* p1;
    double* p2;
893
894
895

    n=fft->n;

896
    if (n==1)
897
    {
peastman's avatar
peastman committed
898
899
        p1 = (double *)in_data;
        p2 = (double *)out_data;
900
901
902
        p2[0] = p1[0];
        p2[1] = p1[1];
    }
903

904
905
906
    /* FFTPACK only does in-place transforms, so emulate out-of-place
     * by copying data to the output array first.
     */
907
    if (in_data != out_data)
908
    {
peastman's avatar
peastman committed
909
910
        p1 = (double *)in_data;
        p2 = (double *)out_data;
911

peastman's avatar
peastman committed
912
        /* n complex = 2*n double elements */
913
        for (i=0;i<2*n;i++)
914
915
916
917
        {
            p2[i] = p1[i];
        }
    }
918

919
920
921
    /* Elements 0   .. 2*n-1 in work are used for ffac values,
     * Elements 2*n .. 4*n-1 are internal FFTPACK work space.
     */
922

923
    if (dir == FFTPACK_FORWARD)
924
    {
peastman's avatar
peastman committed
925
        fftpack_cfftf1(n,(double *)out_data,fft->work+2*n,fft->work,fft->ifac, -1);
926
    }
927
    else if (dir == FFTPACK_BACKWARD)
928
    {
peastman's avatar
peastman committed
929
        fftpack_cfftf1(n,(double *)out_data,fft->work+2*n,fft->work,fft->ifac, 1);
930
931
932
933
934
    }
    else
    {
        fprintf(stderr,"FFT plan mismatch - bad plan or direction.");
        return EINVAL;
935
    }
936
937
938
939
940
941
942
943

    return 0;
}





944
int
945
946
947
948
949
950
951
fftpack_exec_2d          (fftpack_t                  fft,
                          enum fftpack_direction     dir,
                          t_complex *                in_data,
                          t_complex *                out_data)
{
    int                i,nx,ny;
    t_complex *    data;
952

953
954
    nx = fft->n;
    ny = fft->next->n;
955

956
957
958
959
    /* FFTPACK only does in-place transforms, so emulate out-of-place
     * by copying data to the output array first.
     * For 2D there is likely enough data to benefit from memcpy().
     */
960
    if (in_data != out_data)
961
962
963
964
965
966
967
968
    {
        memcpy(out_data,in_data,sizeof(t_complex)*nx*ny);
    }

    /* Much easier to do pointer arithmetic when base has the correct type */
    data = (t_complex *)out_data;

    /* y transforms */
969
    for (i=0;i<nx;i++)
970
971
972
    {
        fftpack_exec_1d(fft->next,dir,data+i*ny,data+i*ny);
    }
973

974
975
    /* Transpose in-place to get data in place for x transform now */
    fftpack_transpose_2d(data,data,nx,ny);
976

977
    /* x transforms */
978
    for (i=0;i<ny;i++)
979
980
981
    {
        fftpack_exec_1d(fft,dir,data+i*nx,data+i*nx);
    }
982

983
984
    /* Transpose in-place to get data back in original order */
    fftpack_transpose_2d(data,data,ny,nx);
985

986
987
988
989
990
991
992
    return 0;
}





993
int
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
fftpack_exec_3d     (fftpack_t                  fft,
                     enum fftpack_direction     dir,
                     t_complex *                in_data,
                     t_complex *                out_data)
{
    int              i,nx,ny,nz,rc;
    t_complex *      data;

    nx=fft->n;
    ny=fft->next->n;
    nz=fft->next->next->n;

    /* FFTPACK only does in-place transforms, so emulate out-of-place
     * by copying data to the output array first.
     * For 3D there is likely enough data to benefit from memcpy().
     */
1010
    if (in_data != out_data)
1011
1012
1013
    {
        memcpy(out_data,in_data,sizeof(t_complex)*nx*ny*nz);
    }
1014

1015
1016
1017
1018
    /* Much easier to do pointer arithmetic when base has the correct type */
    data = (t_complex *)out_data;

    /* Perform z transforms */
1019
    for (i=0;i<nx*ny;i++)
1020
1021
1022
        fftpack_exec_1d(fft->next->next,dir,data+i*nz,data+i*nz);

    /* For each X slice, transpose the y & z dimensions inside the slice */
1023
    for (i=0;i<nx;i++)
1024
1025
1026
1027
1028
    {
        fftpack_transpose_2d(data+i*ny*nz,data+i*ny*nz,ny,nz);
    }

    /* Array is now (nx,nz,ny) - perform y transforms */
1029
    for (i=0;i<nx*nz;i++)
1030
1031
1032
1033
1034
    {
        fftpack_exec_1d(fft->next,dir,data+i*ny,data+i*ny);
    }

    /* Transpose back to (nx,ny,nz) */
1035
    for (i=0;i<nx;i++)
1036
1037
1038
    {
        fftpack_transpose_2d(data+i*ny*nz,data+i*ny*nz,nz,ny);
    }
1039

1040
1041
1042
1043
    /* Transpose entire x & y slices to go from
     * (nx,ny,nz) to (ny,nx,nz).
     */
    rc=fftpack_transpose_2d_nelem(data,data,nx,ny,nz);
1044
    if (rc != 0)
1045
1046
1047
1048
    {
        fprintf(stderr,"Fatal error - cannot transpose X & Y/Z in fftpack_exec_3d().");
        return rc;
    }
1049

1050
    /* Then go from (ny,nx,nz) to (ny,nz,nx) */
1051
    for (i=0;i<ny;i++)
1052
1053
1054
1055
1056
    {
        fftpack_transpose_2d(data+i*nx*nz,data+i*nx*nz,nx,nz);
    }

    /* Perform x transforms */
1057
    for (i=0;i<ny*nz;i++)
1058
1059
1060
    {
        fftpack_exec_1d(fft,dir,data+i*nx,data+i*nx);
    }
1061

1062
    /* Transpose back from (ny,nz,nx) to (ny,nx,nz) */
1063
    for (i=0;i<ny;i++)
1064
1065
1066
    {
        fftpack_transpose_2d(data+i*nz*nx,data+i*nz*nx,nz,nx);
    }
1067
1068

    /* Transpose from (ny,nx,nz) to (nx,ny,nz).
1069
1070
     */
    rc = fftpack_transpose_2d_nelem(data,data,ny,nx,nz);
1071
    if (rc != 0)
1072
1073
1074
1075
    {
        fprintf(stderr,"Fatal error - cannot transpose Y/Z & X in fftpack_exec_3d().");
        return rc;
    }
1076

1077
1078
1079
1080
1081
1082
1083
1084
    return 0;
}



void
fftpack_destroy(fftpack_t      fft)
{
1085
    if (fft != NULL)
1086
1087
    {
        free(fft->work);
1088
        if (fft->next != NULL)
1089
1090
1091
1092
1093
1094
            fftpack_destroy(fft->next);
        free(fft);
    }
}