Fft<T>.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<T>>, Int32) 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.
C#
public 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.
C#
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.
C#
public void BackwardTransformInPlace(
	Vector<Complex<T>> input
)

Parameters

input  Vector<Complex<T>>
On input, a complex vector containing the input signal. On return, the inverse transform of the input.

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

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

Parameters

input  Span<Complex<T>>
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