ManagedFftOfSingle.ForwardTransformInPlace Method

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4

Overload List

ForwardTransformInPlace(ArraySlice<Complex<Single>>) Computes the discrete Fourier transform of a complex signal in place.
ForwardTransformInPlace(DenseVector<Complex<T>>) Computes the discrete Fourier transform of a complex signal in place.
ForwardTransformInPlace(Vector<Complex<T>>) Computes the discrete Fourier transform of a complex signal in place.

ForwardTransformInPlace(ArraySlice<Complex<Single>>)

Computes the discrete Fourier transform of a complex signal in place.
C#
public override void ForwardTransformInPlace(
	ArraySlice<Complex<float>> input
)

Parameters

input  ArraySlice<Complex<Single>>
On input, a complex number array containing the input signal. On return, the forward transform of the input.

Exceptions

InvalidOperationExceptionThe Fourier transform implementation is not configured to accept complex input.

-or-

The Fourier transform implementation is not configured to handle in-place transforms.

ArgumentNullExceptioninput is null.

See Also