Mercurial > hg > batch-feature-extraction-tool
comparison Lib/fftw-3.2.1/doc/html/.svn/text-base/Advanced-Complex-DFTs.html.svn-base @ 0:25bf17994ef1
First commit. VS2013, Codeblocks and Mac OSX configuration
author | Geogaddi\David <d.m.ronan@qmul.ac.uk> |
---|---|
date | Thu, 09 Jul 2015 01:12:16 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:25bf17994ef1 |
---|---|
1 <html lang="en"> | |
2 <head> | |
3 <title>Advanced Complex DFTs - FFTW 3.2.1</title> | |
4 <meta http-equiv="Content-Type" content="text/html"> | |
5 <meta name="description" content="FFTW 3.2.1"> | |
6 <meta name="generator" content="makeinfo 4.8"> | |
7 <link title="Top" rel="start" href="index.html#Top"> | |
8 <link rel="up" href="Advanced-Interface.html#Advanced-Interface" title="Advanced Interface"> | |
9 <link rel="prev" href="Advanced-Interface.html#Advanced-Interface" title="Advanced Interface"> | |
10 <link rel="next" href="Advanced-Real_002ddata-DFTs.html#Advanced-Real_002ddata-DFTs" title="Advanced Real-data DFTs"> | |
11 <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> | |
12 <!-- | |
13 This manual is for FFTW | |
14 (version 3.2.1, 5 February 2009). | |
15 | |
16 Copyright (C) 2003 Matteo Frigo. | |
17 | |
18 Copyright (C) 2003 Massachusetts Institute of Technology. | |
19 | |
20 Permission is granted to make and distribute verbatim copies of | |
21 this manual provided the copyright notice and this permission | |
22 notice are preserved on all copies. | |
23 | |
24 Permission is granted to copy and distribute modified versions of | |
25 this manual under the conditions for verbatim copying, provided | |
26 that the entire resulting derived work is distributed under the | |
27 terms of a permission notice identical to this one. | |
28 | |
29 Permission is granted to copy and distribute translations of this | |
30 manual into another language, under the above conditions for | |
31 modified versions, except that this permission notice may be | |
32 stated in a translation approved by the Free Software Foundation. | |
33 --> | |
34 <meta http-equiv="Content-Style-Type" content="text/css"> | |
35 <style type="text/css"><!-- | |
36 pre.display { font-family:inherit } | |
37 pre.format { font-family:inherit } | |
38 pre.smalldisplay { font-family:inherit; font-size:smaller } | |
39 pre.smallformat { font-family:inherit; font-size:smaller } | |
40 pre.smallexample { font-size:smaller } | |
41 pre.smalllisp { font-size:smaller } | |
42 span.sc { font-variant:small-caps } | |
43 span.roman { font-family:serif; font-weight:normal; } | |
44 span.sansserif { font-family:sans-serif; font-weight:normal; } | |
45 --></style> | |
46 </head> | |
47 <body> | |
48 <div class="node"> | |
49 <p> | |
50 <a name="Advanced-Complex-DFTs"></a> | |
51 Next: <a rel="next" accesskey="n" href="Advanced-Real_002ddata-DFTs.html#Advanced-Real_002ddata-DFTs">Advanced Real-data DFTs</a>, | |
52 Previous: <a rel="previous" accesskey="p" href="Advanced-Interface.html#Advanced-Interface">Advanced Interface</a>, | |
53 Up: <a rel="up" accesskey="u" href="Advanced-Interface.html#Advanced-Interface">Advanced Interface</a> | |
54 <hr> | |
55 </div> | |
56 | |
57 <h4 class="subsection">4.4.1 Advanced Complex DFTs</h4> | |
58 | |
59 <pre class="example"> fftw_plan fftw_plan_many_dft(int rank, const int *n, int howmany, | |
60 fftw_complex *in, const int *inembed, | |
61 int istride, int idist, | |
62 fftw_complex *out, const int *onembed, | |
63 int ostride, int odist, | |
64 int sign, unsigned flags); | |
65 </pre> | |
66 <p><a name="index-fftw_005fplan_005fmany_005fdft-223"></a> | |
67 This plans multidimensional complex DFTs, and is exactly the same as | |
68 <code>fftw_plan_dft</code> except for the new parameters <code>howmany</code>, | |
69 {<code>i</code>,<code>o</code>}<code>nembed</code>, {<code>i</code>,<code>o</code>}<code>stride</code>, | |
70 and {<code>i</code>,<code>o</code>}<code>dist</code>. | |
71 | |
72 <p><code>howmany</code> is the number of transforms to compute, where the | |
73 <code>k</code>-th transform is of the arrays starting at <code>in+k*idist</code> and | |
74 <code>out+k*odist</code>. The resulting plans can often be faster than | |
75 calling FFTW multiple times for the individual transforms. The basic | |
76 <code>fftw_plan_dft</code> interface corresponds to <code>howmany=1</code> (in which | |
77 case the <code>dist</code> parameters are ignored). | |
78 <a name="index-howmany-parameter-224"></a><a name="index-dist-225"></a> | |
79 The two <code>nembed</code> parameters (which should be arrays of length | |
80 <code>rank</code>) indicate the sizes of the input and output array | |
81 dimensions, respectively, where the transform is of a subarray of size | |
82 <code>n</code>. (Each dimension of <code>n</code> should be <code><=</code> the | |
83 corresponding dimension of the <code>nembed</code> arrays.) That is, the | |
84 input and output arrays are stored in row-major order with size given by | |
85 <code>nembed</code> (not counting the strides and howmany multiplicities). | |
86 Passing <code>NULL</code> for an <code>nembed</code> parameter is equivalent to | |
87 passing <code>n</code> (i.e. same physical and logical dimensions, as in the | |
88 basic interface.) | |
89 | |
90 <p>The <code>stride</code> parameters indicate that the <code>j</code>-th element of | |
91 the input or output arrays is located at <code>j*istride</code> or | |
92 <code>j*ostride</code>, respectively. (For a multi-dimensional array, | |
93 <code>j</code> is the ordinary row-major index.) When combined with the | |
94 <code>k</code>-th transform in a <code>howmany</code> loop, from above, this means | |
95 that the (<code>j</code>,<code>k</code>)-th element is at <code>j*stride+k*dist</code>. | |
96 (The basic <code>fftw_plan_dft</code> interface corresponds to a stride of 1.) | |
97 <a name="index-stride-226"></a> | |
98 For in-place transforms, the input and output <code>stride</code> and | |
99 <code>dist</code> parameters should be the same; otherwise, the planner may | |
100 return <code>NULL</code>. | |
101 | |
102 <p>Arrays <code>n</code>, <code>inembed</code>, and <code>onembed</code> are not used after | |
103 this function returns. You can safely free or reuse them. | |
104 | |
105 <p>So, for example, to transform a sequence of contiguous arrays, stored | |
106 one after another, one would use a <code>stride</code> of 1 and a <code>dist</code> | |
107 of N, where N is the product of the dimensions. In | |
108 another example, to transform an array of contiguous “vectors” of | |
109 length M, one would use a <code>howmany</code> of M, a | |
110 <code>stride</code> of M, and a <code>dist</code> of 1. | |
111 <a name="index-vector-227"></a> | |
112 <!-- =========> --> | |
113 | |
114 </body></html> | |
115 |