scipy.linalg.lapack.sgels#
- scipy.linalg.lapack.sgels(a, b[, trans, lwork, overwrite_a, overwrite_b]) = <fortran function sgels>#
Wrapper for
sgels
.- Parameters:
- ainput rank-2 array(‘f’) with bounds (m,n)
- binput rank-2 array(‘f’) with bounds (MAX(m, n),nrhs)
- Returns:
- lqrrank-2 array(‘f’) with bounds (m,n) and a storage
- xrank-2 array(‘f’) with bounds (MAX(m, n),nrhs) and b storage
- infoint
- Other Parameters:
- transinput bytes, optional
Default: ‘N’
- overwrite_ainput int, optional
Default: 0
- overwrite_binput int, optional
Default: 0
- lworkinput int, optional
Default: MAX(MIN(m,n)+MAX(MIN(m,n),nrhs),1)