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

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

Syntax

C#
public DoubleComplex[] Correlate(
	DoubleComplex[] data
)
Visual Basic (Declaration)
Public Function Correlate ( _
	data As DoubleComplex() _
) As DoubleComplex()
Visual C++
public:
array<DoubleComplex>^ Correlate(
	array<DoubleComplex>^ data
)

Parameters

data
Type: array< CenterSpace.NMath.Core..::.DoubleComplex >[]()[]
Input data.

Return Value

Correlation of the kernel and data.

Exceptions

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

See Also