ManagedFft2DOfSingle.ForwardTransformInPlace Method

Definition

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

Overload List

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(Span2D<Complex<T>>) 
ForwardTransformInPlace(Span<Complex<Single>>, Int32) Computes the discrete Fourier transform of a complex signal in place.
ForwardTransformInPlace<TStorage2D>(TStorage2D) Computes the discrete Fourier transform of a complex signal in place.

ForwardTransformInPlace(Span<Complex<Single>>, Int32)

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

Parameters

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

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