Negation operator.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Matrix..::.FloatComplexLowerTriMatrix
A lower triangular matrix.

Return Value

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

See Also