  | DoubleLowerTriMatrixDivide(DoubleLowerTriMatrix, DoubleLowerTriMatrix) Method | 
            Divide a lower triangular matrix by another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleLowerTriMatrix Divide(
	DoubleLowerTriMatrix A,
	DoubleLowerTriMatrix B
)
Public Shared Function Divide ( 
	A As DoubleLowerTriMatrix,
	B As DoubleLowerTriMatrix
) As DoubleLowerTriMatrix
public:
static DoubleLowerTriMatrix^ Divide(
	DoubleLowerTriMatrix^ A, 
	DoubleLowerTriMatrix^ B
)
static member Divide : 
        A : DoubleLowerTriMatrix * 
        B : DoubleLowerTriMatrix -> DoubleLowerTriMatrix Parameters
- A  DoubleLowerTriMatrix
 - A lower triangular matrix.
 - B  DoubleLowerTriMatrix
 - A lower triangular matrix.
 
Return Value
DoubleLowerTriMatrixA lower triangular matrix 
C where 
C[i,j] = A[i,j] / B[i,j].
Exceptions
See Also