  | DoubleLowerTriMatrixUnaryNegation Operator | 
            Negation operator.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleLowerTriMatrix operator -(
	DoubleLowerTriMatrix A
)
Public Shared Operator - ( 
	A As DoubleLowerTriMatrix
) As DoubleLowerTriMatrix
public:
static DoubleLowerTriMatrix^ operator -(
	DoubleLowerTriMatrix^ A
)
static let inline (-)
        A : DoubleLowerTriMatrix  : DoubleLowerTriMatrixParameters
- A  DoubleLowerTriMatrix
 - A lower triangular matrix.
 
Return Value
DoubleLowerTriMatrixA new lower triangular matrix 
B where 
B[i,j] = -A[i,j].
See Also