Vector.InverseComplexFourierTransform<T> Method

Returns the inverse Fourier transform of a vector.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static DenseVector<Complex<T>> InverseComplexFourierTransform<T>(
	Vector<Complex<T>> vector
)

Parameters

vector  Vector<Complex<T>>
A complex vector.

Type Parameters

T

Return Value

DenseVector<Complex<T>>
A dense vector containing the inverse Fourier transform of vector.

Exceptions

ArgumentNullException

vector is null.

See Also