ManagedFft.BackwardTransformInPlace Method

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

BackwardTransformInPlace(ArraySlice<Complex<T>>) Computes the inverse discrete Fourier transform of a complex signal in place.
BackwardTransformInPlace(DenseVector<Complex<T>>) Computes the inverse discrete Fourier transform of a complex signal in place.
BackwardTransformInPlace(Vector<Complex<T>>) Computes the inverse discrete Fourier transform of a complex signal in place.
BackwardTransformInPlace(Span<Complex<Double>>, Int32) Computes the inverse discrete Fourier transform of a complex signal in place.

BackwardTransformInPlace(Span<Complex<Double>>, Int32)

Computes the inverse discrete Fourier transform of a complex signal in place.
C#
public override void BackwardTransformInPlace(
	Span<Complex<double>> input,
	int inputStride
)

Parameters

input  Span<Complex<Double>>
On input, int inputStridea complex span containing the input signal. On return, the inverse transform of the input.
inputStride  Int32
The distance between successive elements in input.

Exceptions

ArgumentNullException

input is null.

See Also