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
In Julia 6.0
julia> 1.*im==1.0*im true
while the types of these two complex numbers are different:
julia> typeof(1.*im) Complex{Int64} julia> typeof(1.0*im) Complex{Float64}
This seems incoherent with the case of real numbers.
The text was updated successfully, but these errors were encountered:
Thanks for the report. This is deprecated on julia master to avoid confusion with broadcasting:
julia> 1.*im==1.0*im ┌ Warning: Deprecated syntax `1.*` at REPL[1]:1. │ Use `1 .*` instead. └ @ nothing REPL[1]:1
See #19089 and #22459
Sorry, something went wrong.
No branches or pull requests
In Julia 6.0
while the types of these two complex numbers are different:
This seems incoherent with the case of real numbers.
The text was updated successfully, but these errors were encountered: