| eig (a[, b, left, right, ...]) |
Solve an ordinary or generalized eigenvalue problem of a square matrix. |
| eigvals (a[, b, overwrite_a]) |
Compute eigenvalues from an ordinary or generalized eigenvalue problem. |
| eigh (a[, b, lower, eigvals_only, ...]) |
Solve an ordinary or generalized eigenvalue problem for a complex Hermitian or real symmetric matrix. |
| eigvalsh (a[, b, lower, overwrite_a, ...]) |
Solve an ordinary or generalized eigenvalue problem for a complex Hermitian or real symmetric matrix. |
| eig_banded (a_band[, lower, eigvals_only, ...]) |
Solve real symmetric or complex hermetian band matrix eigenvalue problem. |
| eigvals_banded (a_band[, lower, overwrite_a_band, ...]) |
Solve real symmetric or complex hermitian band matrix eigenvalue problem. |
| lu (a[, permute_l, overwrite_a]) |
Compute pivoted LU decompostion of a matrix. |
| lu_factor (a[, overwrite_a]) |
Compute pivoted LU decomposition of a matrix. |
| lu_solve ((lu, piv), b[, trans, overwrite_b]) |
Solve an equation system, a x = b, given the LU factorization of a |
| svd (a[, full_matrices, compute_uv, ...]) |
Singular Value Decomposition. |
| svdvals (a[, overwrite_a]) |
Compute singular values of a matrix. |
| diagsvd (s, M, N) |
Construct the sigma matrix in SVD from singular values and size M,N. |
| orth (A) |
Construct an orthonormal basis for the range of A using SVD |
| cholesky (a[, lower, overwrite_a]) |
Compute the Cholesky decomposition of a matrix. |
| cholesky_banded (ab[, overwrite_ab, lower]) |
Cholesky decompose a banded Hermitian positive-definite matrix |
| cho_factor (a[, lower, overwrite_a]) |
Compute the Cholesky decomposition of a matrix, to use in cho_solve |
| cho_solve (clow, b) |
Solve a previously factored symmetric system of equations. |
| qr (a[, overwrite_a, lwork, ...]) |
Compute QR decomposition of a matrix. |
| schur (a[, output, lwork, overwrite_a]) |
Compute Schur decomposition of a matrix. |
| rsf2csf (T, Z) |
Convert real Schur form to complex Schur form. |
| hessenberg (a[, calc_q, overwrite_a]) |
Compute Hessenberg form of a matrix. |