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 paper and the cheat sheet has the lie algebra of the R^n group as R^n.
However in the code the lie algebra of the R^n group is an (n+1)x(n+1) matrix, and the hat() operator of RnTangentBase creates this matrix with the vector coefficients in the top right corner.
I'm wondering which is correct and why there is a difference?
The text was updated successfully, but these errors were encountered:
Ok so it seems like the final decision was to make the lie algebra x^ = x.hat() = [0 x ; 0 0]?
This makes sense to me (admittedly with much less knowledge in this area than yourself and artivis) with the lie bracket equal to zero: [x^, y^] = x^ * y^ - y^ * x^ = 0. If x^ == x (a vector instead of a matrix) then I don't see how this makes sense.
Therefore can I suggest that the cheat sheet be updated?
The paper and the cheat sheet has the lie algebra of the R^n group as R^n.
However in the code the lie algebra of the R^n group is an (n+1)x(n+1) matrix, and the
hat()
operator ofRnTangentBase
creates this matrix with the vector coefficients in the top right corner.I'm wondering which is correct and why there is a difference?
The text was updated successfully, but these errors were encountered: