-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function eigs does not work when matrix is defective #2984
Labels
Comments
Thanks for reporting. Help debugging this issue with |
Hi @josdejong👋, I want to work on the issue. Can you please assign it to me? |
Thanks a lot Darshan! Please let me know if you need any help. |
Likely duplicate of #2879 |
gwhitney
changed the title
Function eigs does not work when there is just one eigenvector
Function eigs does not work when matrix is deficient
Oct 2, 2023
gwhitney
changed the title
Function eigs does not work when matrix is deficient
Function eigs does not work when matrix is defective
Oct 2, 2023
Works with #2879 fix, so confirmed to be a duplicate. Closing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
When a matrix has only one eigenvector, the function
eigs
does not work.To Reproduce
The matrix
[[1, 1], [0, 1]]
is a simple shear matrix that has the eigenvector[0,1]
.However,
eigs([[1, 1], [0, 1]])
returns an error.The text was updated successfully, but these errors were encountered: