Managed Fft.Backward 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
Backward | Computes the discrete Fourier transform of a real signal and returns the result. |
Backward | Computes the discrete Fourier transform of a complex signal and returns the result.. |
Backward | Computes the discrete Fourier transform of a complex signal. |
Backward | Computes the discrete Fourier transform of a real signal. |
Backward | Computes the discrete Fourier transform of a real signal. |
Backward | Computes the discrete Fourier transform of a complex signal. |
Backward | Computes the discrete Fourier transform of a real signal. |
Backward | Computes the discrete Fourier transform of a complex signal. |
Backward | Computes the inverse discrete Fourier transform of a real signal. |
BackwardTransform(ArraySlice<Complex<Double>>, ArraySlice<Complex<Double>>)
Computes the discrete Fourier transform of a complex signal.
public override void BackwardTransform(
ArraySlice<Complex<double>> input,
ArraySlice<Complex<double>> output
)
Parameters
- input ArraySlice<Complex<Double>>
- A complex number array containing the input signal.
- output ArraySlice<Complex<Double>>
- A complex number array to hold the transformed signal.
Exceptions
InvalidOperationException |
The FftDomain of the transform is not complex.
-or- The input and output are the same, but the transform was not set up for in place calculation |
BackwardTransform(ArraySlice<Complex<Double>>, ArraySlice<Double>)
Computes the discrete Fourier transform of a real signal.
public override void BackwardTransform(
ArraySlice<Complex<double>> input,
ArraySlice<double> output
)
Parameters
- input ArraySlice<Complex<Double>>
- A Double array containing the input signal.
- output ArraySlice<Double>
- A complex number array to hold the transformed signal.