Fft2D<T>.ForwardTransformInPlace Method

Definition

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

Overload List

ForwardTransformInPlace(Array2D<Complex<T>>) 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<T>>)

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

Parameters

input  Array2D<Complex<T>>
On input, a complex 2D array containing the input signal. On return, the forward transform of the input.

Exceptions

ArgumentNullExceptioninput is null.

ForwardTransformInPlace(DenseMatrix<Complex<T>>)

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

Parameters

input  DenseMatrix<Complex<T>>
On input, a complex dense matrix containing the input signal. On return, the forward transform of the input.

Exceptions

ArgumentNullExceptioninput is null.

ForwardTransformInPlace(Matrix<Complex<T>>)

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

Parameters

input  Matrix<Complex<T>>
On input, a complex matrix containing the input signal. On return, the forward transform of the input.

Exceptions

ArgumentNullExceptioninput is null.

See Also