Creates a new matrix with the same dimensions as a given matrix, whose values are the result of applying the delta function to each element of the matrix.

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

Syntax

C#
public static DoubleComplexMatrix Delta(
	DoubleComplexMatrix A
)
Visual Basic (Declaration)
Public Shared Function Delta ( _
	A As DoubleComplexMatrix _
) As DoubleComplexMatrix
Visual C++
public:
static DoubleComplexMatrix^ Delta(
	DoubleComplexMatrix^ A
)

Return Value

A new matrix.

Remarks

B[0,j] = A[0,j]

B[i,j] = A[i,j] - A[i-1,j]

See Also