scipy.linalg.lapack.ssyequb#
- scipy.linalg.lapack.ssyequb(a, lower=0) = <flapack function ssyequb>#
Compute scale factors that equilibrate a symmetric matrix (LAPACK
ssyequb).- Parameters:
- andarray
symmetric matrix of shape
(n, n).- lowerint, optional
If nonzero, the lower triangle of a is referenced; otherwise the upper. Default is 0.
- Returns:
- sndarray
Scale factors, length
n. Real for every flavor.- scondfloat
Ratio of the smallest to the largest scale factor.
- amaxfloat
Largest element of a in absolute value.
- infoint
0 on success; if negative, the
-info-th argument had an illegal value; if positive, the info-th diagonal entry is nonpositive.