Click or drag to resize
FFTFft Method
Returns the FFT of the specified complex array.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static Complex[] Fft(
	Complex[] x
)

Parameters

x
Type: Algs4NetComplex
the complex array

Return Value

Type: Complex
the FFT of the complex array x
Exceptions
ExceptionCondition
ArgumentExceptionif the length of x is not a power of 2
See Also