naginterfaces.library.lapacklin.ztptrs

naginterfaces.library.lapacklin.ztptrs(uplo, trans, diag, n, ap, b)[source]

ztptrs solves a complex triangular system of linear equations with multiple right-hand sides, , or , using packed storage.

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

https://support.nag.com/numeric/nl/nagdoc_30/flhtml/f07/f07usf.html

Parameters
uplostr, length 1

Specifies whether is upper or lower triangular.

is upper triangular.

is lower triangular.

transstr, length 1

Indicates the form of the equations.

The equations are of the form .

The equations are of the form .

The equations are of the form .

diagstr, length 1

Indicates whether is a nonunit or unit triangular matrix.

is a nonunit triangular matrix.

is a unit triangular matrix; the diagonal elements are not referenced and are assumed to be .

nint

, the order of the matrix .

apcomplex, array-like, shape

The triangular matrix , packed by columns.

bcomplex, array-like, shape

The right-hand side matrix .

Returns
bcomplex, ndarray, shape

The solution matrix .

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: .

Warns
NagAlgorithmicWarning
(errno )

Element of the diagonal is exactly zero. is singular and the solution has not been computed.

Notes

ztptrs solves a complex triangular system of linear equations , or , using packed storage.

References

Golub, G H and Van Loan, C F, 1996, Matrix Computations, (3rd Edition), Johns Hopkins University Press, Baltimore

Higham, N J, 1989, The accuracy of solutions to triangular systems, SIAM J. Numer. Anal. (26), 1252–1265