Click or drag to resize

NMathFunctionsProduct(DoubleSymmetricMatrix, DoubleVector, DoubleVector) Method

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

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

Parameters

A  DoubleSymmetricMatrix
An symmetric matrix.
v  DoubleVector
A vector.
w  DoubleVector
Matix vector product result placed here. w must have the same equal to the number of rows in A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of v is not equal to the number of columns in A, or if the length of w is not equal to the number of rows in A.
See Also