Click or drag to resize

NMathFunctionsProduct(DoubleComplexVector, DoubleComplexLowerTriMatrix) 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 DoubleComplexVector Product(
	DoubleComplexVector v,
	DoubleComplexLowerTriMatrix A
)

Parameters

v  DoubleComplexVector
A vector.
A  DoubleComplexLowerTriMatrix
A lower triangular matrix.

Return Value

DoubleComplexVector
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