Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions numpy/linalg/_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1356,10 +1356,9 @@ def eig(a):
eigenvalues : (..., M) array
The eigenvalues, each repeated according to its multiplicity.
The eigenvalues are not necessarily ordered. The resulting
array will be of complex type, unless the imaginary part is
zero in which case it will be cast to a real type. When `a`
is real the resulting eigenvalues will be real (0 imaginary
part) or occur in conjugate pairs
array will be of complex type. When `a` is real the resulting
eigenvalues will be real (0 imaginary part) or occur in
conjugate pairs.

eigenvectors : (..., M, M) array
The normalized (unit "length") eigenvectors, such that the
Expand Down
Loading