Computes the inner product 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 DoubleComplexVector Rx(
	DoubleComplexVector x
)
Visual Basic (Declaration)
Public Function Rx ( _
	x As DoubleComplexVector _
) As DoubleComplexVector
Visual C++
public:
DoubleComplexVector^ Rx(
	DoubleComplexVector^ x
)

Return Value

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

Exceptions

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

See Also