Click or drag to resize

NMathFunctionsProduct(DoubleHermitianBandMatrix, DoubleComplexVector) Method

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

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

Parameters

A  DoubleHermitianBandMatrix
An Hermitian banded matrix.
x  DoubleComplexVector
A vector.

Return Value

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