  | DoubleLowerTriMatrixSubtraction(DoubleLowerTriMatrix, DoubleLowerTriMatrix) Operator | 
            Subtracts one lower triangular matrix from another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleLowerTriMatrix operator -(
	DoubleLowerTriMatrix A,
	DoubleLowerTriMatrix B
)
Public Shared Operator - ( 
	A As DoubleLowerTriMatrix,
	B As DoubleLowerTriMatrix
) As DoubleLowerTriMatrix
public:
static DoubleLowerTriMatrix^ operator -(
	DoubleLowerTriMatrix^ A, 
	DoubleLowerTriMatrix^ B
)
static let inline (-)
        A : DoubleLowerTriMatrix * 
        B : DoubleLowerTriMatrix  : DoubleLowerTriMatrixParameters
- 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