This is documentation for an old release of SciPy (version 0.12.0). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.lapack.cgges
-
scipy.linalg.lapack.cgges = <fortran object>
- cgges - Function signature:
- a,b,sdim,alpha,beta,vsl,vsr,work,info = cgges(cselect,a,b,[jobvsl,jobvsr,sort_t,ldvsl,ldvsr,lwork,cselect_extra_args,overwrite_a,overwrite_b])
- Required arguments:
- cselect : call-back function
a : input rank-2 array(‘F’) with bounds (lda,*)
b : input rank-2 array(‘F’) with bounds (ldb,*)
- Optional arguments:
- jobvsl := 1 input int
jobvsr := 1 input int
sort_t := 0 input int
cselect_extra_args := () input tuple
overwrite_a := 0 input int
overwrite_b := 0 input int
ldvsl := ((jobvsl==1)?n:1) input int
ldvsr := ((jobvsr==1)?n:1) input int
lwork := 2*n input int
- Return objects:
- a : rank-2 array(‘F’) with bounds (lda,*)
b : rank-2 array(‘F’) with bounds (ldb,*)
sdim : int
alpha : rank-1 array(‘F’) with bounds (n)
beta : rank-1 array(‘F’) with bounds (n)
vsl : rank-2 array(‘F’) with bounds (ldvsl,n)
vsr : rank-2 array(‘F’) with bounds (ldvsr,n)
work : rank-1 array(‘F’) with bounds (MAX(lwork,1))
info : int
- Call-back functions:
def cselect(alpha,beta): return cselect
Required arguments:
alpha : input complex
beta : input complex
- Return objects:
- cselect : int