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
Hi, thank you for professional Liegroup package.
I can get different results when trying left multiply disturbance by two ways :
T : a 4x4 transition numpy array delta_t=np.array([1,0,0,0,0,0]) #liealgebra
print(SE3.exp(delta_t).as_matrix().dot(T)) #1st way print(SE3.exp(delta_t).dot(T)) #2nd way which delivered a wrong result
Should the result from the 2nd way be equal to the 1st way from your original idea? Or, is T an illegal input in the 2nd way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thank you for professional Liegroup package.
I can get different results when trying left multiply disturbance by two ways :
T : a 4x4 transition numpy array
delta_t=np.array([1,0,0,0,0,0]) #liealgebra
print(SE3.exp(delta_t).as_matrix().dot(T)) #1st way
print(SE3.exp(delta_t).dot(T)) #2nd way which delivered a wrong result
Should the result from the 2nd way be equal to the 1st way from your original idea?
Or, is T an illegal input in the 2nd way?
The text was updated successfully, but these errors were encountered: