Click or drag to resize

NMathFunctionsProduct(FloatBandMatrix, FloatVector, FloatVector) Method

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

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

Parameters

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