Returns the inner product (matrix-vector product) of a vector and a
lower triangular matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static FloatVector Product( FloatVector v, FloatLowerTriMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function Product ( _ v As FloatVector, _ A As FloatLowerTriMatrix _ ) As FloatVector |
| Visual C++ |
|---|
public: static FloatVector^ Product( FloatVector^ v, FloatLowerTriMatrix^ A ) |
Parameters
- v
- Type: CenterSpace.NMath.Core..::.FloatVector
A vector.
- A
- Type: CenterSpace.NMath.Matrix..::.FloatLowerTriMatrix
A lower triangular matrix.
Return Value
The inner product (matrix-vector product) of v and A.
Remarks
This is equal to the inner product of A transpose and v.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the length of v is not equal to the number of rows in the matrix A. |