SignalMath.FourierTransformInPlace<T> Method

Computes the forward discrete Fourier transform of a complex-valued vector in place.

Definition

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

Parameters

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

Type Parameters

T
The element type (double or float).

Exceptions

ArgumentNullException Thrown when values is null.

See Also