Click or drag to resize

NMathFunctionsConjTransposeProduct(DoubleComplexMatrix, DoubleComplexVector) Method

Computes the product of the conjugate transpose of a given matrix and a vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector ConjTransposeProduct(
	DoubleComplexMatrix A,
	DoubleComplexVector x
)

Parameters

A  DoubleComplexMatrix
An m x n matrix.
x  DoubleComplexVector
A vector with m elements.

Return Value

DoubleComplexVector
The product of the conjugate transpose of A and x.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if x does not have length equal to the number of rows in A.
Remarks
Vectorxis treated as a column vector by this function. This function is equivalent to calling NMathFunctions.Product(NMathFunctions.ConjTranspose(A),x).
See Also