Click or drag to resize

DoubleComplexTriDiagMatrixDivision(DoubleComplexTriDiagMatrix, DoubleComplex) Operator

Divides 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 operator /(
	DoubleComplexTriDiagMatrix A,
	DoubleComplex a
)

Parameters

A  DoubleComplexTriDiagMatrix
A tridiagonal matrix.
a  DoubleComplex
A scalar.

Return Value

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