Calculates the complex conjugates of a given matrix's elements. In this case, since there is no imaginary part, 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 DoubleSymmetricMatrix Conj(
	DoubleSymmetricMatrix A
)
Visual Basic (Declaration)
Public Shared Function Conj ( _
	A As DoubleSymmetricMatrix _
) As DoubleSymmetricMatrix
Visual C++
public:
static DoubleSymmetricMatrix^ Conj(
	DoubleSymmetricMatrix^ A
)

Return Value

The given matrix.

See Also