Click or drag to resize

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

Parameters

A  FloatHermitianBandMatrix
An Hermitian banded matrix.
x  FloatComplexVector
A vector.
y  FloatComplexVector
A vector containing the inner product (matrix-vector product) of A and x.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of x or y is not equal to the order of A.
See Also