scipy.linalg.lapack.sgelss
-
scipy.linalg.lapack.sgelss = <fortran object>
- sgelss - Function signature:
- v,x,s,rank,work,info = sgelss(a,b,[cond,lwork,overwrite_a,overwrite_b])
- Required arguments:
- a : input rank-2 array(‘f’) with bounds (m,n)
b : input rank-2 array(‘f’) with bounds (maxmn,nrhs)
- Optional arguments:
- overwrite_a := 0 input int
overwrite_b := 0 input int
cond := -1.0 input float
lwork := 3*minmn+MAX(2*minmn,MAX(maxmn,nrhs)) input int
- Return objects:
- v : rank-2 array(‘f’) with bounds (m,n) and a storage
x : rank-2 array(‘f’) with bounds (maxmn,nrhs) and b storage
s : rank-1 array(‘f’) with bounds (minmn)
rank : int
work : rank-1 array(‘f’) with bounds (MAX(lwork,1))
info : int