Click or drag to resize

NMathFunctionsProduct(FloatComplexVector, FloatHermitianBandMatrix) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexVector Product(
	FloatComplexVector x,
	FloatHermitianBandMatrix A
)

Parameters

x  FloatComplexVector
A vector.
A  FloatHermitianBandMatrix
An Hermitian banded matrix.

Return Value

FloatComplexVector
The inner product (matrix-vector product) of x and A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of x is not equal to the order of A.
See Also