Click or drag to resize

NMathFunctionsProduct(FloatLowerTriMatrix, FloatVector) Method

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

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

Parameters

A  FloatLowerTriMatrix
A lower triangular matrix.
v  FloatVector
A vector.

Return Value

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