Returns the complex arguments of a given matrix's elements. In this case, there is no imaginary part, so this method simply returns the given matrix.

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

Syntax

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

Return Value

The given matrix.

See Also