Click or drag to resize

NMathFunctionsDelta(DoubleMatrix) 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 DoubleMatrix Delta(
	DoubleMatrix A
)

Parameters

A  DoubleMatrix
A matrix.

Return Value

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