From c6f27b0742a34f6215fcfd42541b9e9696796682 Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Fri, 9 Nov 2012 14:23:49 -0500 Subject: Fixed a mistake in linalg.eig() documentation. --- numpy/linalg/linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy') diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 398733a86..01824056e 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -946,7 +946,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 -- cgit v1.2.1