|  | FloatSymBandMatrixDivision(FloatSymBandMatrix, FloatSymBandMatrix) Operator | 
            Divides a symmetric banded matrix by another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static FloatSymBandMatrix operator /(
	FloatSymBandMatrix A,
	FloatSymBandMatrix B
)
Public Shared Operator / ( 
	A As FloatSymBandMatrix,
	B As FloatSymBandMatrix
) As FloatSymBandMatrix
public:
static FloatSymBandMatrix^ operator /(
	FloatSymBandMatrix^ A, 
	FloatSymBandMatrix^ B
)
static let inline (/)
        A : FloatSymBandMatrix * 
        B : FloatSymBandMatrix  : FloatSymBandMatrixParameters
- A  FloatSymBandMatrix
- A symmetric banded matrix.
- B  FloatSymBandMatrix
- A symmetric banded matrix.
Return Value
FloatSymBandMatrixA symmetric banded matrix 
C where 
C[i,j] = A[i,j] / B[i,j].
 Exceptions
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
RemarksThe half bandwidth of the result is the lesser of the half
             bandwiths of the operands.
 See Also
See Also