This is documentation for an old release of SciPy (version 0.17.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.lapack.sgesv¶
- scipy.linalg.lapack.sgesv = <fortran object>¶
- sgesv - Function signature:
- lu,piv,x,info = sgesv(a,b,[overwrite_a,overwrite_b])
- Required arguments:
- a : input rank-2 array(‘f’) with bounds (n,n) b : input rank-2 array(‘f’) with bounds (n,nrhs)
- Optional arguments:
- overwrite_a := 0 input int overwrite_b := 0 input int
- Return objects:
- lu : rank-2 array(‘f’) with bounds (n,n) and a storage piv : rank-1 array(‘i’) with bounds (n) x : rank-2 array(‘f’) with bounds (n,nrhs) and b storage info : int