We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f2fb0 commit b62e257Copy full SHA for b62e257
src/eigen.jl
@@ -57,9 +57,9 @@ end
57
end
58
Sreal = real(S)
59
60
- @inbounds a11 = convert(Sreal, A.data[1])
61
- @inbounds a22 = convert(Sreal, A.data[5])
62
- @inbounds a33 = convert(Sreal, A.data[9])
+ @inbounds a11 = convert(Sreal, real(A.data[1]))
+ @inbounds a22 = convert(Sreal, real(A.data[5]))
+ @inbounds a33 = convert(Sreal, real(A.data[9]))
63
if A.uplo == 'U'
64
@inbounds a12 = convert(S, A.data[4])
65
@inbounds a13 = convert(S, A.data[7])
0 commit comments