  | NMathFunctionsConj(FloatBandMatrix) 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 FloatBandMatrix Conj(
	FloatBandMatrix A
)
Public Shared Function Conj ( 
	A As FloatBandMatrix
) As FloatBandMatrix
public:
static FloatBandMatrix^ Conj(
	FloatBandMatrix^ A
)
static member Conj : 
        A : FloatBandMatrix -> FloatBandMatrix Parameters
- A  FloatBandMatrix
 - A matrix.
 
Return Value
FloatBandMatrixThe given matrix.
See Also