Replies: 1 comment
-
I just realized that I didn't read the parenthesis correctly. The denominator is the mean value between |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In
trajectory_functions.cpp
, the acceleration is computed as follow:point.accelerations.push_back((joint_velocity - joint_velocity_last.at(joint_name)) / (duration_current_sample + sampling_time) * 2);
I don't understand why
(duration_current_sample + sampling_time) * 2)
. Maybe the denominator should be(duration_current_sample + sampling_time) / 2)
but probably justduration_current_sample
.Beta Was this translation helpful? Give feedback.
All reactions