Computes the inner product of the transpose of the inverse of the matrix R and a given vector.

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

Syntax

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

Parameters

x
Type: CenterSpace.NMath.Core..::.FloatVector
A vector.

Return Value

The inner product of the transpose of the inverse of the matrix R and the vector x.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the length of x is not the same as the number of columns in the factored matrix.
CenterSpace.NMath.Core..::.SingularMatrixExceptionThrown if the matrix R is singular.

See Also