-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
rdiv!(randn(4,4), I(4)) fails #40887
Comments
This might have been resolved meanwhile (#38484 ?). |
Great, yes the redundancy issue seems to have been resolved. |
Can this issue be closed then? |
No, the main issue has not been resolved. |
is this to be solved in diagonal.jl file? |
I would say that's the place. I guess it should be made consistent with Would probably also be a good idea to move the |
There is an
rdiv!
method but it requires the arguments to have the sameeltype
, i.e.,rdiv!(randn(4,4), 1.0I(4))
worksI also noticed that there are two
ldiv!
methods forDiagonal
andMatrix
.ldiv!(D::Diagonal, B::StridedVecOrMat)
andldiv!(D::Diagonal{T}, V::AbstractMatrix{T})
. This seems redundant?The text was updated successfully, but these errors were encountered: