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.zhegvd¶
- scipy.linalg.lapack.zhegvd = <fortran object>¶
- zhegvd - Function signature:
- a,w,info = zhegvd(a,b,[itype,jobz,uplo,lwork,overwrite_a,overwrite_b])
- Required arguments:
- a : input rank-2 array(‘D’) with bounds (n,n) b : input rank-2 array(‘D’) with bounds (n,n)
- Optional arguments:
- itype := 1 input int jobz := ‘V’ input string(len=1) uplo := ‘L’ input string(len=1) overwrite_a := 0 input int overwrite_b := 0 input int lwork := 2*n+n*n input int
- Return objects:
- a : rank-2 array(‘D’) with bounds (n,n) w : rank-1 array(‘d’) with bounds (n) info : int