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.zhbevd¶
- scipy.linalg.lapack.zhbevd = <fortran object>¶
- zhbevd - Function signature:
- w,z,info = zhbevd(ab,[compute_v,lower,ldab,lrwork,liwork,overwrite_ab])
- Required arguments:
- ab : input rank-2 array(‘D’) with bounds (ldab,*)
- Optional arguments:
- overwrite_ab := 1 input int compute_v := 1 input int lower := 0 input int ldab := shape(ab,0) input int lrwork := (compute_v?1+5*n+2*n*n:n) input int liwork := (compute_v?3+5*n:1) input int
- Return objects:
- w : rank-1 array(‘d’) with bounds (n) z : rank-2 array(‘D’) with bounds (ldz,ldz) info : int