You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After JuliaLang/julia#42594, we should in principle be able to return LinearAlgebra.LU instead of StaticArrays.LU from lu (similarly for qr). It's not immediately swappable though, since LinearAlgebra.LU stores the factors while StaticArrays currently stores the L and U matrices explicitly.
Would be nice to get rid of these, to obviate the need to include them in a "core" package (cf. #1023 (comment)).
The text was updated successfully, but these errors were encountered:
After JuliaLang/julia#42594, we should in principle be able to return
LinearAlgebra.LU
instead ofStaticArrays.LU
fromlu
(similarly forqr
). It's not immediately swappable though, sinceLinearAlgebra.LU
stores the factors while StaticArrays currently stores theL
andU
matrices explicitly.Would be nice to get rid of these, to obviate the need to include them in a "core" package (cf. #1023 (comment)).
The text was updated successfully, but these errors were encountered: