scipy.linalg.lapack.zheevd¶
- scipy.linalg.lapack.zheevd = <fortran object>¶
 - zheevd - Function signature:
 - w,v,info = zheevd(a,[compute_v,lower,lwork,overwrite_a])
 - Required arguments:
 - a : input rank-2 array(‘D’) with bounds (n,n)
 - Optional arguments:
 - compute_v := 1 input int lower := 0 input int overwrite_a := 0 input int lwork := (compute_v?2*n+n*n:n+1) input int
 - Return objects:
 - w : rank-1 array(‘d’) with bounds (n) v : rank-2 array(‘D’) with bounds (n,n) and a storage info : int
 
