Click or drag to resize

NMathFunctionsConjTranspose(DoubleComplexMatrix) 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 DoubleComplexMatrix ConjTranspose(
	DoubleComplexMatrix A
)

Parameters

A  DoubleComplexMatrix
A matrix.

Return Value

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