Calculates the real parts of a given matrix's elements. In this case, since there are no imaginary parts, 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 DoubleBandMatrix Real(
	DoubleBandMatrix A
)
Visual Basic (Declaration)
Public Shared Function Real ( _
	A As DoubleBandMatrix _
) As DoubleBandMatrix
Visual C++
public:
static DoubleBandMatrix^ Real(
	DoubleBandMatrix^ A
)

Return Value

The given matrix.

See Also