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