Computes the inner product of the orthogonal matrix Q and s given vector.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleVector Qx(
	DoubleVector x
)
Visual Basic (Declaration)
Public Function Qx ( _
	x As DoubleVector _
) As DoubleVector
Visual C++
public:
DoubleVector^ Qx(
	DoubleVector^ x
)

Return Value

The inner product of the orthogonal matrix Q and the vector x.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the length of x is not equal to the minimum of the number of rows and columns in the factored matrix.

See Also