Unary + operator. Just returns the input matrix.

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

Syntax

C#
public static FloatLowerTriMatrix operator +(
	FloatLowerTriMatrix A
)
Visual Basic (Declaration)
Public Shared Operator + ( _
	A As FloatLowerTriMatrix _
) As FloatLowerTriMatrix
Visual C++
public:
static FloatLowerTriMatrix^ operator +(
	FloatLowerTriMatrix^ A
)

Parameters

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

Return Value

The input matrix.

See Also