scipy.linalg.lapack.sgglse#
- scipy.linalg.lapack.sgglse(a, b, c, d[, lwork, overwrite_a, overwrite_b, overwrite_c, overwrite_d]) = <fortran function sgglse>#
Wrapper for
sgglse
.- Parameters:
- ainput rank-2 array(‘f’) with bounds (m,n)
- binput rank-2 array(‘f’) with bounds (p,n)
- cinput rank-1 array(‘f’) with bounds (m)
- dinput rank-1 array(‘f’) with bounds (p)
- Returns:
- trank-2 array(‘f’) with bounds (m,n) and a storage
- rrank-2 array(‘f’) with bounds (p,n) and b storage
- resrank-1 array(‘f’) with bounds (m) and c storage
- xrank-1 array(‘f’) with bounds (n)
- infoint
- Other Parameters:
- overwrite_ainput int, optional
Default: 0
- overwrite_binput int, optional
Default: 0
- overwrite_cinput int, optional
Default: 0
- overwrite_dinput int, optional
Default: 0
- lworkinput int, optional
Default: max(m+n+p,1)