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
The docs when using ?StaticArrays.qr in the Repl writes that: The following functions are available for the QR objects: inv, size, and \.
However, this seems to not be true for the array types in StaticArrays.
using StaticArrays
A =randn(4, 3)
b =randn(4)
StaticArrays.qr(A)\b # works fine
A_static =SMatrix{4, 3}(A)
b_static =SVector{4}(b)
StaticArrays.qr(A_static)\b_static # not working
It would be great to have this functionality implemented.
The text was updated successfully, but these errors were encountered:
The docs when using
?StaticArrays.qr
in the Repl writes that:The following functions are available for the QR objects: inv, size, and \.
However, this seems to not be true for the array types in StaticArrays.
It would be great to have this functionality implemented.
The text was updated successfully, but these errors were encountered: