Click or drag to resize

DoubleTriDiagMatrixSubtraction(DoubleTriDiagMatrix, Double) Operator

Subtracts a scalar from the non-zero elements of a tridiagonal matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleTriDiagMatrix operator -(
	DoubleTriDiagMatrix A,
	double a
)

Parameters

A  DoubleTriDiagMatrix
A tridiagonal matrix.
a  Double
A scalar.

Return Value

DoubleTriDiagMatrix
A tridiagonal matrix, B, with the same dimensions as A, and B[i,j] = A[i,j] - a whenever j - i is less than or equal 1, or i - j is less than or equal 1.
See Also