Returns the inner product (matrix-vector product) of an upper triangular matrix and a vector.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  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

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the length of v is not equal to the number of columns in the matrix A.

See Also