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.Core
Assembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
public static FloatMatrix Conj(
	FloatMatrix A
)
Visual Basic
Public Shared Function Conj ( _
	A As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ Conj(
	FloatMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::..FloatMatrix
A matrix.

Return Value

The given matrix.

See Also