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

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplexVector Product(
	DoubleComplexVector x,
	DoubleHermitianBandMatrix A
)
Visual Basic (Declaration)
Public Shared Function Product ( _
	x As DoubleComplexVector, _
	A As DoubleHermitianBandMatrix _
) As DoubleComplexVector
Visual C++
public:
static DoubleComplexVector^ Product(
	DoubleComplexVector^ x, 
	DoubleHermitianBandMatrix^ A
)

Return Value

The inner product (matrix-vector product) of x and A.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the length of x is not equal to the number of rows in A.

See Also