FourierTransformBase¶
- class odl.trafos.fourier.FourierTransformBase(*args, **kwargs)[source]¶
Bases:
OperatorDiscretized Fourier transform between discrete L^p spaces.
This operator is the discretized variant of the continuous Fourier Transform between Lebesgue L^p spaces. It applies a three-step procedure consisting of a pre-processing step of the data, an FFT evaluation and a post-processing step. Pre- and post-processing account for the shift and scaling of the real-space and Fourier-space grids.
The sign convention ('-' vs. '+') can be changed with the
signparameter.See also
- Attributes:
adjointAdjoint transform, equal to the inverse.
axesAxes along the FT is calculated by this operator.
domainSet of objects on which this operator can be evaluated.
halfcomplexReturn
Trueif the last transform axis is halved.implBackend for the FFT implementation.
inverseInverse Fourier transform.
is_functionalTrueif this operator's range is aField.is_linearTrueif this operator is linear.rangeSet in which the result of an evaluation of this operator lies.
shiftsReturn the boolean list indicating shifting per axis.
signSign of the complex exponent in the transform.
Methods
__call__(x[, out])Return
self(x[, out, **kwargs]).Delete the FFTW plan of this transform.
Set the temporaries to
None.create_temporaries([r, f])Allocate and store reusable temporaries.
derivative(point)Return the operator derivative at
point.init_fftw_plan([planning_effort])Initialize the FFTW plan for this transform for later use.
norm([estimate])Return the operator norm of this operator.
- __init__(inverse, domain, range=None, impl=None, **kwargs)[source]¶
Initialize a new instance.
All parameters are given according to the specifics of the forward transform. The
inverseparameter is used to control conversions for the inverse transform.- Parameters:
- inversebool
If
True, create the inverse transform, otherwise the forward transform.- domain
DiscretizedSpace Domain of the Fourier transform. If the
DiscretizedSpace.exponentofdomainandrangeare equal to 2.0, this operator has an adjoint which is equal to its inverse.- range
DiscretizedSpace, optional Range of the Fourier transform. If not given, the range is determined from
domainand the other parameters. The exponent is chosen to be the conjugatep / (p - 1), which reads as 'inf' for p=1 and 1 for p='inf'.- impl{'numpy', 'pyfftw'}, optional
Backend for the FFT implementation. The 'pyfftw' backend is faster but requires the
pyfftwpackage.Noneselects the fastest available backend.- axesint or sequence of ints, optional
Dimensions along which to take the transform. Default: all axes
- sign{'-', '+'}, optional
Sign of the complex exponent. Default: '-'
- halfcomplexbool, optional
If
True, calculate only the negative frequency part along the last axis for real input. IfFalse, calculate the full complex FFT. For complexdomain, it has no effect. Default:True- shiftbool or sequence of bools, optional
If
True, the reciprocal grid is shifted by half a stride in the negative direction. With a boolean sequence, this option is applied separately to each axis. If a sequence is provided, it must have the same length asaxesif supplied. Note that this must be set toTruein the halved axis in half-complex transforms. Default:True
- Other Parameters:
- tmp_r
DiscretizedSpaceElementornumpy.ndarray, optional Temporary for calculations in the real space (domain of this transform). It is shared with the inverse.
Variants using this: R2C, R2HC, C2R (inverse)
- tmp_f
DiscretizedSpaceElementornumpy.ndarray, optional Temporary for calculations in the frequency (reciprocal) space. It is shared with the inverse.
Variants using this: R2C, C2R (inverse), HC2R (inverse)
- tmp_r
Notes
The transform variants are:
C2C: complex-to-complex. The default variant, one-to-one and unitary.
R2C: real-to-complex. This variants adjoint and inverse may suffer from information loss since the result is cast to real.
R2HC: real-to-halfcomplex. This variant stores only a half-space of frequencies and is guaranteed to be one-to-one (invertible).
The
Operator.rangeof this operator always has theComplexNumbersasLinearSpace.field, i.e. if the field ofdomainis theRealNumbers, this operator's adjoint is defined by identifying real and imaginary parts with the components of a real product space element. See the mathematical background documentation for details.