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
This behaviour is inconsistent with real(::Array), which is not deprecated (per discussion in #20387)
real(::Array)
julia> a = speye(Complex128,10,10); julia> real(a) WARNING: real(A::SparseMatrixCSC) is deprecated, use real.(A) instead.
The text was updated successfully, but these errors were encountered:
Ref #19242 where conj got un-deprecated for the same reason.
conj
Sorry, something went wrong.
Looks like a bug in #17265, cc @Sacha0
Bug indeed, good catch! :)
Successfully merging a pull request may close this issue.
This behaviour is inconsistent with
real(::Array)
, which is not deprecated (per discussion in #20387)The text was updated successfully, but these errors were encountered: