Click or drag to resize

NMathFunctionsProduct(DoubleVector, DoubleSymmetricMatrix) Method

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

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

Parameters

v  DoubleVector
A vector.
A  DoubleSymmetricMatrix
An symmetric matrix.

Return Value

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