Constructs a convolution instance and defines the convolution kernel, and input signal data length.

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

Syntax

C#
public Double1DConvolution(
	DoubleVector kernel,
	int datalength
)
Visual Basic (Declaration)
Public Sub New ( _
	kernel As DoubleVector, _
	datalength As Integer _
)
Visual C++
public:
Double1DConvolution(
	DoubleVector^ kernel, 
	int datalength
)

Parameters

kernel
Type: CenterSpace.NMath.Core..::.DoubleVector
Convolution kernel data.
datalength
Type: System..::.Int32
Length of data to convolve.

See Also