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