Negation operator.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleUpperTriMatrix Negate(
	DoubleUpperTriMatrix A
)
Visual Basic (Declaration)
Public Shared Function Negate ( _
	A As DoubleUpperTriMatrix _
) As DoubleUpperTriMatrix
Visual C++
public:
static DoubleUpperTriMatrix^ Negate(
	DoubleUpperTriMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleUpperTriMatrix
an upper triangular matrix.

Return Value

A new upper triangular matrix B such that B[i,j] = -A[i,j].

See Also