| DoubleSymBandMatrixDivision(DoubleSymBandMatrix, DoubleSymBandMatrix) Operator |
Divides a symmetric banded matrix by another.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static DoubleSymBandMatrix operator /(
DoubleSymBandMatrix A,
DoubleSymBandMatrix B
)
Public Shared Operator / (
A As DoubleSymBandMatrix,
B As DoubleSymBandMatrix
) As DoubleSymBandMatrix
public:
static DoubleSymBandMatrix^ operator /(
DoubleSymBandMatrix^ A,
DoubleSymBandMatrix^ B
)
static let inline (/)
A : DoubleSymBandMatrix *
B : DoubleSymBandMatrix : DoubleSymBandMatrix
Parameters
- A DoubleSymBandMatrix
- A symmetric banded matrix.
- B DoubleSymBandMatrix
- A symmetric banded matrix.
Return Value
DoubleSymBandMatrixA symmetric banded matrix
C where
C[i,j] = A[i,j] / B[i,j].
Exceptions Exception | Condition |
---|
MismatchedSizeException | Thrown 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