scipy.linalg.lapack.cheev#
- scipy.linalg.lapack.cheev(a, compute_v=1, lower=0, lwork=..., overwrite_a=0) = <flapack function cheev>#
Compute the eigenvalues and optionally the eigenvectors of a Hermitian matrix (LAPACK
cheev).- Parameters:
- andarray
Hermitian matrix of shape
(n, n).- compute_vint, optional
If nonzero, eigenvectors are computed as well as eigenvalues. Default is 1.
- lowerint, optional
If nonzero, the lower triangle of a is referenced; otherwise the upper. Default is 0.
- lworkint, optional
Size of the workspace. Default is
max(2 * n - 1, 1). Usecheev_lworkfor the optimal value.- overwrite_aint, optional
If nonzero, a may be overwritten in place. Default is 0.
- Returns:
- wndarray
Eigenvalues in ascending order, length
n. Real for every flavor.- vndarray
Orthonormal eigenvectors as columns when compute_v is nonzero; otherwise the contents are not meaningful.
- infoint
0 on success; if negative, the
-info-th argument had an illegal value; if positive, the algorithm failed to converge.