Fft<T>.Backward Transform In Place 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 inverse discrete Fourier transform of a complex signal in place. |
Backward | Computes the inverse discrete Fourier transform of a complex signal in place. |
Backward | Computes the inverse discrete Fourier transform of a complex signal in place. |
BackwardTransformInPlace(ArraySlice<Complex<T>>)
Computes the inverse discrete Fourier transform of a complex signal in place.
public abstract void BackwardTransformInPlace(
ArraySlice<Complex<T>> input
)
Parameters
- input ArraySlice<Complex<T>>
- On input, a complex array slice containing the input signal. On return, the inverse transform of the input.
Exceptions
ArgumentNullException | input is null. |
BackwardTransformInPlace(DenseVector<Complex<T>>)
Computes the inverse discrete Fourier transform of a complex signal in place.
public void BackwardTransformInPlace(
DenseVector<Complex<T>> input
)
Parameters
- input DenseVector<Complex<T>>
- On input, a dense complex vector containing the input signal. On return, the inverse transform of the input.
Exceptions
ArgumentNullException | input is null. |
BackwardTransformInPlace(Vector<Complex<T>>)
Computes the inverse discrete Fourier transform of a complex signal in place.
public void BackwardTransformInPlace(
Vector<Complex<T>> input
)