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
Hi
I don't know if it is the intended behaviour (master 0.7.0-DEV.2597 Commit 6827170)
Lets create a symmetric sparse matrix B
A = sprand(5,5,0.8); A = A+A'; B=Symmetric(A); and copy it to another symmetric C
A = sprand(5,5,0.8); A = A+A'; B=Symmetric(A);
C = copy(B); typeof(C)==typeof(B) true
The sum of B and C should be (or it should not?) of the same type, but
typeof(B+C) Array{Float64,2}
The text was updated successfully, but these errors were encountered:
JuliaLang/LinearAlgebra.jl#439
Sorry, something went wrong.
No branches or pull requests
Hi
I don't know if it is the intended behaviour (master 0.7.0-DEV.2597 Commit 6827170)
Lets create a symmetric sparse matrix B
A = sprand(5,5,0.8); A = A+A'; B=Symmetric(A);
and copy it to another symmetric C
The sum of B and C should be (or it should not?) of the same type, but
The text was updated successfully, but these errors were encountered: