Click or drag to resize

NMathFunctionsProduct(DoubleVector, DoubleSymBandMatrix, DoubleVector) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void Product(
	DoubleVector x,
	DoubleSymBandMatrix A,
	DoubleVector y
)

Parameters

x  DoubleVector
A vector.
A  DoubleSymBandMatrix
A symmetric banded matrix.
y  DoubleVector
A vector containing the inner product (matrix-vector product) of x and A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of x or y is not equal to the order A.
Remarks
Since A is symmetric, this is equal to the inner product of A and x.
See Also