Click or drag to resize

NMathFunctionsDelta(DoubleComplexMatrix) Method

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: 7.4
Syntax
public static DoubleComplexMatrix Delta(
	DoubleComplexMatrix A
)

Parameters

A  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexMatrix
A new matrix.
Remarks
B[0,j] = A[0,j]
B[i,j] = A[i,j] - A[i-1,j]
See Also