author | Francesco Abbate <francesco.bbt@gmail.com> | 2012年03月07日 22:11:37 +0100 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2012年03月07日 22:11:37 +0100 |
commit | fbdbd2ff555e3c2ad5fcb5a20893a5da42466e08 (patch) | |
tree | 7a379bf1fcfb1aa24ce4c9795d9384b3148a07ac | |
parent | 12c3c108bd856fd66af573cafb07dc97d9ee46b1 (diff) | |
download | gsl-shell-eigensystems.tar.gz |
-rw-r--r-- | doc/user-manual/eigen.rst | 4 |
diff --git a/doc/user-manual/eigen.rst b/doc/user-manual/eigen.rst index 53bc5f97..d696882a 100644 --- a/doc/user-manual/eigen.rst +++ b/doc/user-manual/eigen.rst @@ -32,7 +32,7 @@ Real Symmetric Matrices The function returns:: - eigenvalues, eigenvectors = symm(A, eigen.SORT_ABS_ASC) + eval, evec = symm(A, eigen.SORT_ABS_ASC) while the first eigenvalue correpsonds to the first eigenvector stored in the first column of the eigenvectors matrix. For real symmetric matrices, the library uses the symmetric bidiagonalization and QR reduction method. @@ -53,7 +53,7 @@ Real Nonsymmetric Matrices This function computes eigenvalues and right eigenvectors of the n-by-n real nonsymmetric matrix A. The computed eigenvectors are normalized to have unit magnitude. On output, the upper portion of A contains the Schur form T:: - eigenvalues, eigenvector, A = non_symm(A, eigen.SORT_ABS_ASC) + eval, evec, A = non_symm(A, eigen.SORT_ABS_ASC) Complex Hermitian Matrices |