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

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void Convolve(
	DoubleComplexVector data,
	ref DoubleComplexVector z
)
Visual Basic (Declaration)
Public Sub Convolve ( _
	data As DoubleComplexVector, _
	ByRef z As DoubleComplexVector _
)
Visual C++
public:
void Convolve(
	DoubleComplexVector^ data, 
	DoubleComplexVector^% z
)

Parameters

data
Type: CenterSpace.NMath.Core..::.DoubleComplexVector
Data vector.
z
Type: CenterSpace.NMath.Core..::.DoubleComplexVector %
Convolution result, z = kernel*data.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input data length does not match the length of this convolution instance.
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the output convolution vector, z, is to small to contain the resultant convolution.

See Also