Click or drag to resize

DoubleSymBandMatrixDivision(Double, DoubleSymBandMatrix) Operator

Divides a scalar by the non-zero elements of a symmetric banded matrix.

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

Parameters

a  Double
A scalar.
A  DoubleSymBandMatrix
A symmetric banded matrix.

Return Value

DoubleSymBandMatrix
A symmetric banded matrix, B, with the same half bandwidth as A, and B[i,j] = a / A[i,j] whenever j - i is less than or equal to the half bandwidth of A, or i - j is less than or equal to the half bandwidth of A.
See Also