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

Parameters

data
Type: CenterSpace.NMath.Core..::.FloatVector
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