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

scipy.linalg.lapack.dgesv(a, b[, overwrite_a, overwrite_b]) = <fortran object>

Wrapper for dgesv.

Parameters
ainput rank-2 array(‘d’) with bounds (n,n)
binput rank-2 array(‘d’) with bounds (n,nrhs)
Returns
lurank-2 array(‘d’) with bounds (n,n) and a storage
pivrank-1 array(‘i’) with bounds (n)
xrank-2 array(‘d’) with bounds (n,nrhs) and b storage
infoint
Other Parameters
overwrite_ainput int, optional

Default: 0

overwrite_binput int, optional

Default: 0

Previous topic

scipy.linalg.lapack.sgesv

Next topic

scipy.linalg.lapack.cgesv