Click or drag to resize

DoubleComplexTriDiagMatrixMultiply(DoubleComplex, DoubleComplexTriDiagMatrix) Method

Multiplies the non-zero elements of a tridiagonal matrix by a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexTriDiagMatrix Multiply(
	DoubleComplex a,
	DoubleComplexTriDiagMatrix A
)

Parameters

a  DoubleComplex
A scalar.
A  DoubleComplexTriDiagMatrix
A tridiagonal matrix.

Return Value

DoubleComplexTriDiagMatrix
A tridiagonal matrix, B, with the same dimensions as A, and 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