diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-08-15 18:13:35 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-15 18:13:35 -0700 |
commit | 9b10a5f7a0f260981ad69cec147807080a456d0a (patch) | |
tree | cbf4b752327d7c6c0e3cff58e9b4ed62d31d556d /numpy | |
parent | a18d7c493a0aee6becea601a37d878c87bb43f3a (diff) | |
parent | c6f27b0742a34f6215fcfd42541b9e9696796682 (diff) | |
download | numpy-9b10a5f7a0f260981ad69cec147807080a456d0a.tar.gz |
Merge pull request #2721 from abalkin/master
Mistake in linalg.eig() documentation
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 4b0d3d86d..851db6e8c 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -1021,7 +1021,7 @@ def eig(a): The number `w` is an eigenvalue of `a` if there exists a vector `v` such that ``dot(a,v) = w * v``. Thus, the arrays `a`, `w`, and - `v` satisfy the equations ``dot(a[i,:], v[i]) = w[i] * v[:,i]`` + `v` satisfy the equations ``dot(a[:,:], v[:,i]) = w[i] * v[:,i]`` for :math:`i \\in \\{0,...,M-1\\}`. The array `v` of eigenvectors may not be of maximum rank, that is, some |