Fft<T>.ForwardTransformInPlace Method

Definition

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

Overload List

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

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

Parameters

input  ArraySlice<Complex<T>>
On input, a comples ArraySlice<T> containing the input signal. On return, the forward transform of the input.

Exceptions

ArgumentNullExceptioninput is null.

ForwardTransformInPlace(DenseVector<Complex<T>>)

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

Parameters

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

Exceptions

ArgumentNullExceptioninput is null.

ForwardTransformInPlace(Vector<Complex<T>>)

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

Parameters

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

Exceptions

ArgumentNullExceptioninput is null.

See Also