Click or drag to resize

NMathFunctionsProduct(FloatVector, FloatSymmetricMatrix) Method

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

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

Parameters

v  FloatVector
A vector.
A  FloatSymmetricMatrix
An symmetric matrix.

Return Value

FloatVector
The inner product (matrix-vector product) of v and A.
Remarks
This is equal to the inner product of A and v.
See Also