Click or drag to resize

NMathFunctionsProduct(FloatVector, FloatBandMatrix, FloatVector) Method

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

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

Parameters

x  FloatVector
A vector.
A  FloatBandMatrix
A banded matrix.
y  FloatVector
A vector containing the inner product (matrix-vector product) of x and A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of x is not equal to the number of rows in A.
MismatchedSizeExceptionThrown if the length of y is not equal to the number of columns in A.
Remarks
This is equal to the inner product of A transpose and x.
See Also