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.dgelss¶
- scipy.linalg.lapack.dgelss = <fortran object>¶
- dgelss - Function signature:
- v,x,s,rank,work,info = dgelss(a,b,[cond,lwork,overwrite_a,overwrite_b])
- Required arguments:
- a : input rank-2 array(‘d’) with bounds (m,n) b : input rank-2 array(‘d’) 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(‘d’) with bounds (m,n) and a storage x : rank-2 array(‘d’) with bounds (maxmn,nrhs) and b storage s : rank-1 array(‘d’) with bounds (minmn) rank : int work : rank-1 array(‘d’) with bounds (MAX(lwork,1)) info : int