naginterfaces.library.lapacklin.dtptrs¶
- naginterfaces.library.lapacklin.dtptrs(uplo, trans, diag, n, ap, b)[source]¶
dtptrs
solves a real 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 f07ue
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f07/f07uef.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 .
or
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 .
- apfloat, array-like, shape
The triangular matrix , packed by columns.
- bfloat, array-like, shape
The right-hand side matrix .
- Returns
- bfloat, 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
dtptrs
solves a real 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