Skip to content
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

typeof(1.*im) returns Complex{Int64} #26713

Closed
yanncalec opened this issue Apr 5, 2018 · 1 comment
Closed

typeof(1.*im) returns Complex{Int64} #26713

yanncalec opened this issue Apr 5, 2018 · 1 comment

Comments

@yanncalec
Copy link

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.

@fredrikekre
Copy link
Member

fredrikekre commented Apr 5, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants