Click or drag to resize

MatrixTConjugateTransposeThisAndMultiply(VectorT) Method

Multiplies the conjugate transpose of this matrix by a vector and returns the result.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Vector<T> ConjugateTransposeThisAndMultiply(
	Vector<T> rightSide
)

Parameters

rightSide  VectorT
The vector to multiply with.

Return Value

VectorT
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentExceptionIf this.RowCount != rightSide.Count.
See Also