naginterfaces.library.lapacklin.dpptri¶
- naginterfaces.library.lapacklin.dpptri(uplo, n, ap)[source]¶
dpptri
computes the inverse of a real symmetric positive definite matrix , where has been factorized bydpptrf()
, using packed storage.For full information please refer to the NAG Library document for f07gj
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f07/f07gjf.html
- Parameters
- uplostr, length 1
Specifies how has been factorized.
, where is upper triangular.
, where is lower triangular.
- nint
, the order of the matrix .
- apfloat, array-like, shape
The Cholesky factor of stored in packed form, as returned by
dpptrf()
.
- Returns
- apfloat, ndarray, shape
The factorization is overwritten by the matrix .
- Raises
- NagValueError
- (errno )
On entry, error in parameter .
Constraint: or .
- (errno )
On entry, error in parameter .
Constraint: .
- Warns
- NagAlgorithmicWarning
- (errno )
Diagonal element of the Cholesky factor is zero; the Cholesky factor is singular and the inverse of cannot be computed.
- Notes
dpptri
is used to compute the inverse of a real symmetric positive definite matrix , the function must be preceded by a call todpptrf()
, which computes the Cholesky factorization of , using packed storage.If , and is computed by first inverting and then forming .
If , and is computed by first inverting and then forming .
- References
Du Croz, J J and Higham, N J, 1992, Stability of methods for matrix inversion, IMA J. Numer. Anal. (12), 1–19