-
-
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
Display regression for tuples of arrays #17087
Labels
regression
Regression in behavior compared to a previous version
Milestone
Comments
Not specific to those functions though (the problem is the display of tuples of arrays). |
findn
and findnz
Found another display issue with tuples of arrays. Julia 0.4 also displayed things oddly: Julia 0.4 julia> a, b = eig([1.0 0.0 0.0; 0.0 3.0 0.0; 0.0 0.0 18.0])
([1.0,3.0,18.0],
3x3 Array{Float64,2}:
1.0 0.0 0.0
0.0 1.0 0.0
0.0 0.0 1.0)
julia> a
3-element Array{Float64,1}:
1.0
3.0
18.0
julia> b
3x3 Array{Float64,2}:
1.0 0.0 0.0
0.0 1.0 0.0
0.0 0.0 1.0 Julia 0.5-dev julia> a, b = eig([1.0 0.0 0.0; 0.0 3.0 0.0; 0.0 0.0 18.0])
(3-element Array{Float64,1}:
1.0
3.0
18.0,
3×3 Array{Float64,2}:
1.0 0.0 0.0
0.0 1.0 0.0
0.0 0.0 1.0) |
Tentatively adding to 0.5.0 milestone, as it's one of the regressions introduced by the |
mfasi
pushed a commit
to mfasi/julia
that referenced
this issue
Sep 5, 2016
this attribute doesn't nest properly, and functions just end up branching almost the entire code based on this parameter, so it's cleaner as a separate method fix JuliaLang#17087 fix JuliaLang#16910 fix JuliaLang#17090
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While updating the doctests I found that Julia 0.4.6 displays
findn
andfindnz
as the following:while Julia 0.5-dev does:
The text was updated successfully, but these errors were encountered: