SignalMath.InverseFourierTransformInPlace<T> Method

Computes the inverse discrete Fourier transform of a complex spectrum in place. The result is scaled by 1/N.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public static void InverseFourierTransformInPlace<T>(
	Vector<Complex<T>> values
)

Parameters

values  Vector<Complex<T>>
The complex frequency spectrum vector. On return, contains the time-domain signal.

Type Parameters

T
The element type (double or float).

Exceptions

ArgumentNullException Thrown when values is null.

See Also