Click or drag to resize
FFTConvolve Method
Returns the linear convolution of the two specified complex arrays.

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

Parameters

x
Type: Algs4NetComplex
one complex array
y
Type: Algs4NetComplex
the other complex array

Return Value

Type: Complex
the linear convolution of x and y
Exceptions
ExceptionCondition
ArgumentExceptionif the length of x does not equal the length of y or if the length is not a power of 2
See Also