|  | FloatLowerTriMatrixNegate Method | 
            Negation operator.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static FloatLowerTriMatrix Negate(
	FloatLowerTriMatrix A
)
Public Shared Function Negate ( 
	A As FloatLowerTriMatrix
) As FloatLowerTriMatrix
public:
static FloatLowerTriMatrix^ Negate(
	FloatLowerTriMatrix^ A
)
static member Negate : 
        A : FloatLowerTriMatrix -> FloatLowerTriMatrix Parameters
- A  FloatLowerTriMatrix
- A lower triangular matrix.
Return Value
FloatLowerTriMatrixA new lower triangular matrix 
B such that 
B[i,j] = -A[i,j].
 See Also
See Also