Computes the inner product of the inverse of the matrix R and a given vector.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleVector RInvx( DoubleVector x ) |
| Visual Basic (Declaration) |
|---|
Public Function RInvx ( _ x As DoubleVector _ ) As DoubleVector |
| Visual C++ |
|---|
public: DoubleVector^ RInvx( DoubleVector^ x ) |
Parameters
- x
- Type: CenterSpace.NMath.Core..::.DoubleVector
A vector.
Return Value
The inner product of the inverse of the matrix R and the vector x.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the length of x is not the same as the number of columns in the factored matrix. |
| CenterSpace.NMath.Core..::.SingularMatrixException | Thrown if the matrix R is singular. |