Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Math Error #13

Open
Narglfrob opened this issue Dec 28, 2022 · 0 comments
Open

Math Error #13

Narglfrob opened this issue Dec 28, 2022 · 0 comments

Comments

@Narglfrob
Copy link

For this rotation matrix
rotation_matrix = [[-0.8829475929 , -0.1294039002,-0.4512850306],
[0.0000000000,-0.9612616959, 0.2756373558],
[-0.4694715628,0.2433733398, 0.8487437005]]

I expect the following results in Angle Axis (radians)

  • array([-0.73690633, 0.41537825, 2.95556985])

But instead, I get the following:

  • [ -0.7369063, 0.4153783, 2.9555698 ]

For this second rotation matrix (mirrored from the first)
rotation_matrix = [[-0.8829475929 , 0.1294039002,0.4512850306],
[0.0000000000,-0.9612616959, 0.2756373558],
[0.4694715628,0.2433733398 , 0.8487437005]]

I expect the following results in Angle Axis (radians)

  • array([-0.73690633, -0.41537825, -2.95556985])

But instead, I get the following:

  • [ 0.7691948, 0.4335785, 3.0850716 ]

Notice how my expected results are mirrored and symmetric (which matches my inputs & expectation) whereas the actual results are not symmetric.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant