Managed Fft 2D.Forward Transform Method
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Forward | Computes the discrete Fourier transform of a real signal and returns the result. |
Forward | Computes the discrete Fourier transform of a complex signal and returns the result. |
Forward | Computes the discrete Fourier transform of a complex signal. |
Forward | Computes the discrete Fourier transform of a real signal. |
Forward | Computes the discrete Fourier transform of a real signal. |
Forward | Computes the discrete Fourier transform of a complex signal. |
Forward | Computes the discrete Fourier transform of a real signal. |
Forward | Computes the discrete Fourier transform of a complex signal. |
Forward | Computes the discrete Fourier transform of a real signal. |
ForwardTransform(Array2D<Complex<Double>>, Array2D<Complex<Double>>)
Computes the discrete Fourier transform of a complex signal.
public override void ForwardTransform(
Array2D<Complex<double>> input,
Array2D<Complex<double>> output
)
Parameters
Exceptions
InvalidOperationException | The Fourier transform implementation is not configured
to accept complex input.
-or- input and output are the same, but the Fourier transform implementation is not configured to handle in-place transforms. |
ArgumentNullException | input is null.
-or- output is null. |
ForwardTransform(Array2D<Double>, Array2D<Complex<Double>>)
Computes the discrete Fourier transform of a real signal.
public override void ForwardTransform(
Array2D<double> input,
Array2D<Complex<double>> output
)
Parameters
Remarks
The output is stored in a compact format to take advantage of the symmetry properties of a real Fourier transform. Specifically, output contains only the first n/2+1 terms of the transformed signal.
Exceptions
InvalidOperationException | The Fourier transform implementation is not configured to accept real input. |
ArgumentNullException | input is null.
-or- output is null. |