-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
LinearAlgebra eigen errors when given Diagonal #953
Comments
I think this should work yes. The easy fix would be to define
in Ideally, we would have more efficient methods for diagonal matrices. In theory, we should just be able to do something like However, I feel like |
Creating dense arrays seems a bit wasteful. I think one can do much better in the case when the |
Duplicate of #594? |
Sure looks like a duplicate to me. |
No, it's not a duplicate. JuliaLang/julia#46797 fixes this issue here, but not the other one. The old issue is about standard eigendecompositions of matrices of matrices, whereas this one is about generalized eigendecomposition of abstract matrices. |
When I pass matrices of type
Diagonal
toeigen
, I get errors. This should work, right?Demonstrating the issue
The text was updated successfully, but these errors were encountered: