tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
fftw.h
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010-2013 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #ifndef TENSOR_FFT_H
21 #define TENSOR_FFT_H
22 
23 #include <tensor/config.h>
24 #include <tensor/tensor.h>
25 
26 #ifndef TENSOR_USE_FFTW3
27 #error "libtensor was built without the fftw3 interface"
28 #endif
29 
30 namespace tensor {
31 
36  enum {
37  FFTW_FORWARD = -1,
38  FFTW_BACKWARD = 1
39  };
40 
42  const CTensor fftw(const CTensor& in, int direction);
44  const CTensor fftw(const CTensor& in, index dim, int direction);
46  const CTensor fftw(const CTensor& in, const Booleans& convert, int direction);
47 
48 
50  void fftw_inplace(CTensor& in, int direction);
52  void fftw_inplace(CTensor& in, index dim, int direction);
54  void fftw_inplace(CTensor& in, const Booleans& convert, int direction);
55 
66  const CTensor fftshift(const CTensor& in, int direction);
68  const CTensor fftshift(const CTensor& in, index dim, int direction);
70  const CTensor fftshift(const CTensor& in, const Booleans& convert, int direction);
71 
72 } // namespace tensor
73 
74 #endif // TENSOR_FFT_H