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 DoubleVector Convolve(
	DoubleVector data
)
Visual Basic (Declaration)
Public Function Convolve ( _
	data As DoubleVector _
) As DoubleVector
Visual C++
public:
DoubleVector^ Convolve(
	DoubleVector^ data
)

Parameters

data
Type: CenterSpace.NMath.Core..::.DoubleVector
Data vector.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if the input data length does not match the length of this convolution instance.

See Also