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.zgeev¶
- scipy.linalg.lapack.zgeev = <fortran object>¶
- zgeev - Function signature:
- w,vl,vr,info = zgeev(a,[compute_vl,compute_vr,lwork,overwrite_a])
- Required arguments:
- a : input rank-2 array(‘D’) with bounds (n,n)
- Optional arguments:
- compute_vl := 1 input int compute_vr := 1 input int overwrite_a := 0 input int lwork := 2*n input int
- Return objects:
- w : rank-1 array(‘D’) with bounds (n) vl : rank-2 array(‘D’) with bounds (ldvl,n) vr : rank-2 array(‘D’) with bounds (ldvr,n) info : int