This repository was archived by the owner on Dec 17, 2020. It is now read-only.

Description
Thanks for the great repository and clean code!
I was going through the code for educational purposes, and had a question about the following line.
//Include a velocity estimate for velocity-controlled robots
Eigen::VectorXd joint_vel(delta_theta / parameters_.publish_period);
|
Eigen::VectorXd joint_vel(delta_theta / parameters_.publish_period); |
Multiplying the inverse of the jacobian with the end eff. vel should give us the joint velocities directly. Why do we need to divide this by publish time period? I am probably misunderstanding something.
Thank you!