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