We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ldiv!(y fact::SVD, b) --> y
1.6.4
julia> VERSION v"1.6.4" julia> using LinearAlgebra julia> n=8; A=rand(n,n); u=rand(n); b=A*u; v=zero(u); F=svd(A); ldiv!(v,F,b) ≈ u, v ≈ u (true, false)
julia> using LinearAlgebra julia> VERSION v"1.7.0" julia> n=8; A=rand(n,n); u=rand(n); b=A*u; v=zero(u); F=svd(A); ldiv!(v,F,b) ≈ u, v ≈ u (true, true)
The text was updated successfully, but these errors were encountered:
See #853, the related PRs, JuliaLang/julia#40899 and JuliaLang/julia#41083, were not backported to 1.6. Edit: Looks like we thought we have backported JuliaLang/julia#41083 to 1.6.2, but I can't find the related modification in JuliaLang/julia#40702's Files changed @KristofferC).
Files changed
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: