ComplexSparseMatrixMultiplyHermitian Method |
Multiply sparse Hermitian matrix A and column vector x.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex[] MultiplyHermitian(
ComplexSparseMatrix A,
Complex[] x
)
Public Shared Function MultiplyHermitian (
A As ComplexSparseMatrix,
x As Complex()
) As Complex()
public:
static array<Complex>^ MultiplyHermitian(
ComplexSparseMatrix^ A,
array<Complex>^ x
)
static member MultiplyHermitian :
A : ComplexSparseMatrix *
x : Complex[] -> Complex[]
Parameters
- A
- Type: Imsl.MathComplexSparseMatrix
A Hermitian ComplexSparseMatrix, where only
the lower triangular part of the matrix is to be used.
- x
- Type: Imsl.MathComplex
A Complex vector.
Return Value
Type:
Complex
A
Complex vector representing the product of the
arguments,
.
Exceptions Exception | Condition |
---|
ArgumentException | is thrown when the
input matrix is not square or the number of columns in the input
matrix is not equal to the number of elements in the input column
vector.
|
See Also