Click or drag to resize

NMathFunctionsProduct(FloatComplexBandMatrix, FloatComplexVector, FloatComplexVector) 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(
	FloatComplexBandMatrix A,
	FloatComplexVector x,
	FloatComplexVector y
)

Parameters

A  FloatComplexBandMatrix
A banded matrix.
x  FloatComplexVector
A vector.
y  FloatComplexVector
The inner product (matrix-vector product) of A and x.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of x is not equal to the number of columns in A.
See Also