|  | DoubleComplexQRDecompQTx Method | 
            Computes the inner product of the conjugate transpose of the orthogonal matrix Q and 
            a given vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleComplexVector QTx(
	DoubleComplexVector x
)
Public Function QTx ( 
	x As DoubleComplexVector
) As DoubleComplexVector
public:
DoubleComplexVector^ QTx(
	DoubleComplexVector^ x
)
member QTx : 
        x : DoubleComplexVector -> DoubleComplexVector Parameters
- x  DoubleComplexVector
- A vector.
Return Value
DoubleComplexVectorThe inner product of the transpose of the matrix 
Q and the vector 
x.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown if the length of x is
            not equal to the number of rows in the factored matrix. | 
 See Also
See Also