  | NMathFunctionsConj(FloatMatrix) Method | 
            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.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatMatrix Conj(
	FloatMatrix A
)
Public Shared Function Conj ( 
	A As FloatMatrix
) As FloatMatrix
public:
static FloatMatrix^ Conj(
	FloatMatrix^ A
)
static member Conj : 
        A : FloatMatrix -> FloatMatrix Parameters
- A  FloatMatrix
 - A matrix.
 
Return Value
FloatMatrixThe given matrix.
See Also