scipy.linalg.lapack.dggev#
- scipy.linalg.lapack.dggev(a, b[, compute_vl, compute_vr, lwork, overwrite_a, overwrite_b]) = <fortran function dggev>#
- Wrapper for - dggev.- Parameters:
- ainput rank-2 array(‘d’) with bounds (n,n)
- binput rank-2 array(‘d’) with bounds (n,n)
 
- Returns:
- alpharrank-1 array(‘d’) with bounds (n)
- alphairank-1 array(‘d’) with bounds (n)
- betarank-1 array(‘d’) with bounds (n)
- vlrank-2 array(‘d’) with bounds (ldvl,n)
- vrrank-2 array(‘d’) with bounds (ldvr,n)
- workrank-1 array(‘d’) with bounds (MAX(lwork, 1))
- infoint
 
- Other Parameters:
- compute_vlinput int, optional
- Default: 1 
- compute_vrinput int, optional
- Default: 1 
- overwrite_ainput int, optional
- Default: 0 
- overwrite_binput int, optional
- Default: 0 
- lworkinput int, optional
- Default: max(8*n,1)