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
I am fairly new to using StaticArrays, so I do not know if this is intended or not but it caught me by surprise as this is different behaviour when compared to the standard cholesky! functionality from LinearAlgebra. I believe the reason for this behaviour can be found in the following line
# Standard LinearAlgebra
S =Matrix(2.0I(3))
cholesky!(S)
S # S is changed# StaticArrays
T =MMatrix{3,3,Float64,9}(2I(3))
cholesky!(T)
T # T has not changed
The text was updated successfully, but these errors were encountered:
I am fairly new to using StaticArrays, so I do not know if this is intended or not but it caught me by surprise as this is different behaviour when compared to the standard
cholesky!
functionality from LinearAlgebra. I believe the reason for this behaviour can be found in the following lineStaticArrays.jl/src/cholesky.jl
Line 11 in 609aa34
which can be seen to return a new data.
MWE:
The text was updated successfully, but these errors were encountered: