Click or drag to resize

FloatComplexTriDiagMatrixSubtract(FloatComplex, FloatComplexTriDiagMatrix) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexTriDiagMatrix Subtract(
	FloatComplex a,
	FloatComplexTriDiagMatrix A
)

Parameters

a  FloatComplex
A scalar.
A  FloatComplexTriDiagMatrix
A tridiagonal matrix.

Return Value

FloatComplexTriDiagMatrix
A tridiagonal matrix, B, with B[i,j] = a - A[i,j] whenever j - i is less than or equal to the 1, or i - j is less than or equal to 1.
See Also