ManagedFft2D.ForwardTransformInPlace Method

Definition

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

Overload List

ForwardTransformInPlace(Array2D<Complex<Double>>) Computes the discrete Fourier transform of a complex signal in place.
ForwardTransformInPlace(DenseMatrix<Complex<T>>) Computes the discrete Fourier transform of a complex signal in place.
ForwardTransformInPlace(Matrix<Complex<T>>) Computes the discrete Fourier transform of a complex signal in place.

ForwardTransformInPlace(Array2D<Complex<Double>>)

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

Parameters

input  Array2D<Complex<Double>>
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