Managed Fft Of Single.Backward Transform Method
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
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<Single>>, ArraySlice<Complex<Single>>)
Computes the discrete Fourier transform of a complex signal.
public override void BackwardTransform(
ArraySlice<Complex<float>> input,
ArraySlice<Complex<float>> output
)
Parameters
- input ArraySlice<Complex<Single>>
- A complex number array containing the input signal.
- output ArraySlice<Complex<Single>>
- 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<Single>>, ArraySlice<Single>)
Computes the discrete Fourier transform of a real signal.
public override void BackwardTransform(
ArraySlice<Complex<float>> input,
ArraySlice<float> output
)
Parameters
- input ArraySlice<Complex<Single>>
- A Single array containing the input signal.
- output ArraySlice<Single>
- A complex number array to hold the transformed signal.