~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to extern/fftw/doc/html/Multi_002ddimensional-Transforms.html

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-02-08 22:20:54 UTC
  • mfrom: (1.4.2 upstream)
  • mto: (14.2.6 sid) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110208222054-kk0gwa4bu8h5lyq4
Tags: upstream-2.56.1-beta-svn34076
ImportĀ upstreamĀ versionĀ 2.56.1-beta-svn34076

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html lang="en">
2
 
<head>
3
 
<title>Multi-dimensional Transforms - FFTW 3.1.2</title>
4
 
<meta http-equiv="Content-Type" content="text/html">
5
 
<meta name="description" content="FFTW 3.1.2">
6
 
<meta name="generator" content="makeinfo 4.8">
7
 
<link title="Top" rel="start" href="index.html#Top">
8
 
<link rel="up" href="What-FFTW-Really-Computes.html#What-FFTW-Really-Computes" title="What FFTW Really Computes">
9
 
<link rel="prev" href="1d-Discrete-Hartley-Transforms-_0028DHTs_0029.html#g_t1d-Discrete-Hartley-Transforms-_0028DHTs_0029" title="1d Discrete Hartley Transforms (DHTs)">
10
 
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
11
 
<!--
12
 
This manual is for FFTW
13
 
(version 3.1.2, 23 June 2006).
14
 
 
15
 
Copyright (C) 2003 Matteo Frigo.
16
 
 
17
 
Copyright (C) 2003 Massachusetts Institute of Technology.
18
 
 
19
 
     Permission is granted to make and distribute verbatim copies of
20
 
     this manual provided the copyright notice and this permission
21
 
     notice are preserved on all copies.
22
 
 
23
 
     Permission is granted to copy and distribute modified versions of
24
 
     this manual under the conditions for verbatim copying, provided
25
 
     that the entire resulting derived work is distributed under the
26
 
     terms of a permission notice identical to this one.
27
 
 
28
 
     Permission is granted to copy and distribute translations of this
29
 
     manual into another language, under the above conditions for
30
 
     modified versions, except that this permission notice may be
31
 
     stated in a translation approved by the Free Software Foundation.
32
 
   -->
33
 
<meta http-equiv="Content-Style-Type" content="text/css">
34
 
<style type="text/css"><!--
35
 
  pre.display { font-family:inherit }
36
 
  pre.format  { font-family:inherit }
37
 
  pre.smalldisplay { font-family:inherit; font-size:smaller }
38
 
  pre.smallformat  { font-family:inherit; font-size:smaller }
39
 
  pre.smallexample { font-size:smaller }
40
 
  pre.smalllisp    { font-size:smaller }
41
 
  span.sc    { font-variant:small-caps }
42
 
  span.roman { font-family:serif; font-weight:normal; } 
43
 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
44
 
--></style>
45
 
</head>
46
 
<body>
47
 
<div class="node">
48
 
<p>
49
 
<a name="Multi-dimensional-Transforms"></a>
50
 
<a name="Multi_002ddimensional-Transforms"></a>
51
 
Previous:&nbsp;<a rel="previous" accesskey="p" href="1d-Discrete-Hartley-Transforms-_0028DHTs_0029.html#g_t1d-Discrete-Hartley-Transforms-_0028DHTs_0029">1d Discrete Hartley Transforms (DHTs)</a>,
52
 
Up:&nbsp;<a rel="up" accesskey="u" href="What-FFTW-Really-Computes.html#What-FFTW-Really-Computes">What FFTW Really Computes</a>
53
 
<hr>
54
 
</div>
55
 
 
56
 
<h4 class="subsection">4.7.6 Multi-dimensional Transforms</h4>
57
 
 
58
 
<p>The multi-dimensional transforms of FFTW, in general, compute simply the
59
 
separable product of the given 1d transform along each dimension of the
60
 
array.  Since each of these transforms is unnormalized, computing the
61
 
forward followed by the backward/inverse multi-dimensional transform
62
 
will result in the original array scaled by the product of the
63
 
normalization factors for each dimension (e.g. the product of the
64
 
dimension sizes, for a multi-dimensional DFT).
65
 
 
66
 
   <p><a name="index-r2c-306"></a>The definition of FFTW's multi-dimensional DFT of real data (r2c)
67
 
deserves special attention.  In this case, we logically compute the full
68
 
multi-dimensional DFT of the input data; since the input data are purely
69
 
real, the output data have the Hermitian symmetry and therefore only one
70
 
non-redundant half need be stored.  More specifically, for an n<sub>1</sub> x n<sub>2</sub> x n<sub>3</sub> x ... x n<sub>d</sub> multi-dimensional real-input DFT, the full (logical) complex output array
71
 
<i>Y</i>[<i>k</i><sub>1</sub>, <i>k</i><sub>2</sub>, ...,
72
 
<i>k</i><sub><i>d</i></sub>]has the symmetry:
73
 
<i>Y</i>[<i>k</i><sub>1</sub>, <i>k</i><sub>2</sub>, ...,
74
 
<i>k</i><sub><i>d</i></sub>] = <i>Y</i>[<i>n</i><sub>1</sub> -
75
 
<i>k</i><sub>1</sub>, <i>n</i><sub>2</sub> - <i>k</i><sub>2</sub>, ...,
76
 
<i>n</i><sub><i>d</i></sub> - <i>k</i><sub><i>d</i></sub>]<sup>*</sup>(where each dimension is periodic).  Because of this symmetry, we only
77
 
store the
78
 
<i>k</i><sub><i>d</i></sub> = 0...<i>n</i><sub><i>d</i></sub>/2+1elements of the <em>last</em> dimension (division by 2 is rounded
79
 
down).  (We could instead have cut any other dimension in half, but the
80
 
last dimension proved computationally convenient.)  This results in the
81
 
peculiar array format described in more detail by <a href="Real_002ddata-DFT-Array-Format.html#Real_002ddata-DFT-Array-Format">Real-data DFT Array Format</a>.
82
 
 
83
 
   <p>The multi-dimensional c2r transform is simply the unnormalized inverse
84
 
of the r2c transform.  i.e. it is the same as FFTW's complex backward
85
 
multi-dimensional DFT, operating on a Hermitian input array in the
86
 
peculiar format mentioned above and outputting a real array (since the
87
 
DFT output is purely real).
88
 
 
89
 
   <p>We should remind the user that the separable product of 1d transforms
90
 
along each dimension, as computed by FFTW, is not always the same thing
91
 
as the usual multi-dimensional transform.  A multi-dimensional
92
 
<code>R2HC</code> (or <code>HC2R</code>) transform is not identical to the
93
 
multi-dimensional DFT, requiring some post-processing to combine the
94
 
requisite real and imaginary parts, as was described in <a href="The-Halfcomplex_002dformat-DFT.html#The-Halfcomplex_002dformat-DFT">The Halfcomplex-format DFT</a>.  Likewise, FFTW's multidimensional
95
 
<code>FFTW_DHT</code> r2r transform is not the same thing as the logical
96
 
multi-dimensional discrete Hartley transform defined in the literature,
97
 
as discussed in <a href="The-Discrete-Hartley-Transform.html#The-Discrete-Hartley-Transform">The Discrete Hartley Transform</a>.
98
 
 
99
 
<!-- ************************************************************ -->
100
 
</body></html>
101