-
-
Notifications
You must be signed in to change notification settings - Fork 398
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
function_string of Symmetric matrix includes the entire matrix #3764
Comments
Lines 884 to 919 in 56b186f
In the REPL, Julia prints the full symmetric matrix: julia> using LinearAlgebra
julia> Symmetric([1 2; 2 3])
2×2 Symmetric{Int64, Matrix{Int64}}:
1 2
2 3 |
Right, i just saw that too. I thought it didn't, but apparently it does. |
Arguably someone might interpret out current Here's what julia> UpperTriangular([1 2; 2 3])
2×2 UpperTriangular{Int64, Matrix{Int64}}:
1 2
⋅ 3 I don't even know if the current |
print()
ing (instead of display()
) of symmetric constraint shows the entire matrix
IMHO, the |
Thoughts @blegat? I would err on the side of sticking to |
See #3768 |
@odow thank you! |
This is even worse for text-only output, looks like only pretty-printing does it right.
The text was updated successfully, but these errors were encountered: