scipy.linalg.lapack.zpftri#

scipy.linalg.lapack.zpftri(n, a, transr='N', uplo='U', overwrite_a=0) = <flapack function zpftri>#

Invert a positive definite matrix in rectangular full packed (RFP) storage from its Cholesky factorization (LAPACK zpftri).

Parameters:
nint

Order of the square matrix.

andarray

Cholesky factorization in RFP storage, as returned by pftrf.

transrstr, optional

'N' for the normal RFP layout, 'C' for the transposed one. Default is 'N'.

uplostr, optional

'U' if a holds the upper triangle, 'L' if lower. Default is 'U'.

overwrite_aint, optional

If nonzero, a may be overwritten in place. Default is 0.

Returns:
ainvndarray

The inverse in RFP storage, overwriting a.

infoint

0 on success; if negative, the -info-th argument had an illegal value.