Click or drag to resize

DoubleTriDiagMatrixAddition(Double, DoubleTriDiagMatrix) Operator

Adds a scalar to 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 +(
	double a,
	DoubleTriDiagMatrix A
)

Parameters

a  Double
A scalar.
A  DoubleTriDiagMatrix
A tridiagonal matrix.

Return Value

DoubleTriDiagMatrix
A tridiagonal matrix, Bwith B[i,j] = a + A[i,j] whenever j - i is less than or equal to 1, or i - j is less than or equal to 1.
See Also