Click or drag to resize

NMathFunctionsProduct(FloatHermitianBandMatrix, FloatComplexVector) 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 FloatComplexVector Product(
	FloatHermitianBandMatrix A,
	FloatComplexVector x
)

Parameters

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

Return Value

FloatComplexVector
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.
See Also