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