  | DoubleUpperTriMatrixDivision(DoubleUpperTriMatrix, DoubleUpperTriMatrix) Operator | 
            Divide an upper triangular matrix by another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleUpperTriMatrix operator /(
	DoubleUpperTriMatrix A,
	DoubleUpperTriMatrix B
)
Public Shared Operator / ( 
	A As DoubleUpperTriMatrix,
	B As DoubleUpperTriMatrix
) As DoubleUpperTriMatrix
public:
static DoubleUpperTriMatrix^ operator /(
	DoubleUpperTriMatrix^ A, 
	DoubleUpperTriMatrix^ B
)
static let inline (/)
        A : DoubleUpperTriMatrix * 
        B : DoubleUpperTriMatrix  : DoubleUpperTriMatrixParameters
- 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