Click or drag to resize

NMathFunctionsConjTranspose(FloatComplexMatrix) Method

Returns the conjugate of the transpose of a given matrix. The matrix returned is a new view of the same data as the given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexMatrix ConjTranspose(
	FloatComplexMatrix A
)

Parameters

A  FloatComplexMatrix
A matrix.

Return Value

FloatComplexMatrix
A new matrix B with B[i,k] = Conj(A[k,i]).
See Also