  | DoubleBandMatrixDivide(DoubleBandMatrix, DoubleBandMatrix) Method | 
            Divides a banded matrix by another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleBandMatrix Divide(
	DoubleBandMatrix A,
	DoubleBandMatrix B
)
Public Shared Function Divide ( 
	A As DoubleBandMatrix,
	B As DoubleBandMatrix
) As DoubleBandMatrix
public:
static DoubleBandMatrix^ Divide(
	DoubleBandMatrix^ A, 
	DoubleBandMatrix^ B
)
static member Divide : 
        A : DoubleBandMatrix * 
        B : DoubleBandMatrix -> DoubleBandMatrix Parameters
- A  DoubleBandMatrix
 - A banded matrix.
 - B  DoubleBandMatrix
 - A banded matrix.
 
Return Value
DoubleBandMatrixA 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 upper and lower 
            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 upper bandwidth of A is 
            greater than the upper bandwidth of B, or the lower bandwidth of A is 
            greater than the lower bandwidth of B. | 
RemarksThe lower/upper bandwidths of the result is the lesser of the lower/upper
             bandwiths of the operands.
See Also