naginterfaces.library.blas.ztrmv

naginterfaces.library.blas.ztrmv(uplo, trans, diag, a, x)[source]

ztrmv computes the matrix-vector product for a complex triangular matrix, its transpose or its conjugate transpose.

For full information please refer to the NAG Library document for f06sf

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/f06/f06sff.html

Parameters
uplostr, length 1

Specifies whether is upper or lower triangular.

is upper triangular.

is lower triangular.

transstr, length 1

Specifies the operation to be performed.

.

.

.

diagstr, length 1

Specifies whether has nonunit or unit diagonal elements.

The diagonal elements are stored explicitly.

The diagonal elements are assumed to be , and are not referenced.

acomplex, array-like, shape

The triangular matrix .

xcomplex, array-like, shape

The vector .

Returns
xcomplex, ndarray, shape

The updated vector .

Raises
NagValueError
(errno )

On entry, error in parameter .

Constraint: or .

(errno )

On entry, error in parameter .

Constraint: , or .

(errno )

On entry, error in parameter .

Constraint: or .

(errno )

On entry, error in parameter .

Constraint: .

(errno )

On entry, error in parameter .

Constraint: .

Notes

In the NAG Library the traditional C interface for this routine uses a different algorithmic base. Please contact NAG if you have any questions about compatibility.

ztrmv performs one of the matrix-vector operations

where is an complex triangular matrix, and is an -element complex vector.