scipy.linalg.lapack.sgegv¶
- scipy.linalg.lapack.sgegv(*args, **kwds)[source]¶
 sgegv is deprecated! The *gegv family of routines has been deprecated in LAPACK 3.6.0 in favor of the *ggev family of routines. The corresponding wrappers will be removed from SciPy in a future release.
- sgegv - Function signature:
 - alphar,alphai,beta,vl,vr,info = sgegv(a,b,[compute_vl,compute_vr,lwork,overwrite_a,overwrite_b])
 - Required arguments:
 - a : input rank-2 array(‘f’) with bounds (n,n) b : input rank-2 array(‘f’) with bounds (n,n)
 - Optional arguments:
 - compute_vl := 1 input int compute_vr := 1 input int overwrite_a := 0 input int overwrite_b := 0 input int lwork := 8*n input int
 - Return objects:
 - alphar : rank-1 array(‘f’) with bounds (n) alphai : rank-1 array(‘f’) with bounds (n) beta : rank-1 array(‘f’) with bounds (n) vl : rank-2 array(‘f’) with bounds (ldvl,n) vr : rank-2 array(‘f’) with bounds (ldvr,n) info : int
 
