Click or drag to resize

DoubleComplex1DConvolutionConvolve(DoubleComplex, DoubleComplex) Method

Computes the convolution between the stored convolution kernel, and the vector data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Convolve(
	DoubleComplex[] data,
	ref DoubleComplex[] z
)

Parameters

data  DoubleComplex
Input data.
z  DoubleComplex
Convolution result, z = kernel*data.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the input data length does not match the length of this convolution instance.
InvalidArgumentException Thrown if the output convolution vector, z, is to small to contain the resultant convolution.
See Also