This is documentation for an old release of SciPy (version 0.12.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Solve an ordinary or generalized eigenvalue problem for a complex Hermitian or real symmetric matrix.
Find eigenvalues w of matrix a, where b is positive definite:
a v[:,i] = w[i] b v[:,i]
v[i,:].conj() a v[:,i] = w[i]
v[i,:].conj() b v[:,i] = 1
Parameters : | a : (M, M) array_like
b : (M, M) array_like, optional
lower : bool, optional
turbo : bool, optional
eigvals : tuple (lo, hi), optional
type : integer, optional
overwrite_a : bool, optional
overwrite_b : bool, optional
check_finite : boolean, optional
|
---|---|
Returns : | w : (N,) float ndarray
|
Raises : | LinAlgError : :
|