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

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplexVector Product(
	DoubleComplexVector v,
	DoubleComplexLowerTriMatrix A
)
Visual Basic (Declaration)
Public Shared Function Product ( _
	v As DoubleComplexVector, _
	A As DoubleComplexLowerTriMatrix _
) As DoubleComplexVector
Visual C++
public:
static DoubleComplexVector^ Product(
	DoubleComplexVector^ v, 
	DoubleComplexLowerTriMatrix^ A
)

Return Value

The inner product (matrix-vector product) of v and A.

Remarks

This is equal to the inner product of A transpose and v.

Exceptions

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

See Also