SciPy

This is documentation for an old release of SciPy (version 1.5.3). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.linalg.lapack.dgetri

scipy.linalg.lapack.dgetri(lu, piv[, lwork, overwrite_lu]) = <fortran object>

Wrapper for dgetri.

Parameters
luinput rank-2 array(‘d’) with bounds (n,n)
pivinput rank-1 array(‘i’) with bounds (n)
Returns
inv_arank-2 array(‘d’) with bounds (n,n) and lu storage
infoint
Other Parameters
overwrite_luinput int, optional

Default: 0

lworkinput int, optional

Default: max(3*n,1)

Previous topic

scipy.linalg.lapack.sgetri

Next topic

scipy.linalg.lapack.cgetri