Click or drag to resize

NMathFunctionsProduct(DoubleVector, DoubleLowerTriMatrix) Method

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

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

Parameters

v  DoubleVector
A vector.
A  DoubleLowerTriMatrix
A lower triangular matrix.

Return Value

DoubleVector
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