Click or drag to resize

NMathFunctionsProduct(FloatComplexVector, FloatComplexLowerTriMatrix) 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 FloatComplexVector Product(
	FloatComplexVector v,
	FloatComplexLowerTriMatrix A
)

Parameters

v  FloatComplexVector
A vector.
A  FloatComplexLowerTriMatrix
A lower triangular matrix.

Return Value

FloatComplexVector
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