Returns the linear convolution of the two specified complex arrays.
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Complex[] Convolve(
Complex[] x,
Complex[] y
)
Parameters
- x
- Type: Algs4NetComplex
one complex array - y
- Type: Algs4NetComplex
the other complex array
Return Value
Type:
Complexthe linear convolution of
x and
y
ExceptionsException | Condition |
---|
ArgumentException | if the length of x does not equal
the length of y or if the length is not a power of 2 |
See Also