We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the SO(3) element, C, is given as
C = [ 1, 0, 0, 0, -1, 0, 0, 0, -1 ]
and use SO3.to_quat(C), the division by zero error is raised in line 256 due to
SO3.to_quat(C)
eta = 0.5 * (np.trace(C) + 1) ** 0.5
being zero.
The text was updated successfully, but these errors were encountered:
mitchellcohen3
No branches or pull requests
When the SO(3) element, C, is given as
and use
SO3.to_quat(C)
, the division by zero error is raised in line 256 due tobeing zero.
The text was updated successfully, but these errors were encountered: