Click or drag to resize

NMathFunctionsProduct(FloatVector, FloatUpperTriMatrix) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatVector Product(
	FloatVector v,
	FloatUpperTriMatrix A
)

Parameters

v  FloatVector
A vector.
A  FloatUpperTriMatrix
An upper triangular matrix.

Return Value

FloatVector
The inner product (matrix-vector product) of v and A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of v is not equal to the number of rows in the matrix A.
Remarks
This is equal to the inner product of A transpose and v.
See Also