Click or drag to resize

DoubleHermitianBandMatrixDivision(DoubleHermitianBandMatrix, DoubleHermitianBandMatrix) Operator

Divides a Hermitian banded matrix by another.

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

Parameters

A  DoubleHermitianBandMatrix
A Hermitian banded matrix.
B  DoubleHermitianBandMatrix
A Hermitian banded matrix.

Return Value

DoubleHermitianBandMatrix
A Hermitian banded matrix C where C[i,j] = A[i,j] / B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions. This exception is also thrown if the half bandwidths of the operands are such that division of a non-zero element by a zero element would occur. This will be the case if the half bandwidth of A is greater than the half bandwidth of B.
Remarks
The half bandwidth of the result is the lesser of the half bandwiths of the operands.
See Also