Robotics StackExchange | Archived questions

i am new to ROS. i want to ask how to multiply two transformation matrix in tf ROS?

tf ROS transformation matrix multiplication

Asked by aanish on 2018-07-11 08:33:20 UTC

Comments

Answers

If you're working in C++ the tf::Transform class overloads the * operator to combine transformations. So it is as simple as:

tf::Transform A, B;

tf::Transform C = A * B;

see the reference here.

Asked by PeteBlackerThe3rd on 2018-07-11 09:23:22 UTC

Comments

is multiplication same in python.

Asked by aanish on 2018-07-16 09:57:44 UTC