-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
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
Reduction of Q for mimic joints #57
Comments
gergondet
added a commit
to gergondet/Tasks
that referenced
this issue
May 31, 2022
This commit greatly simplifies the handling of mimic joints' substitution in the problem with a more straight forward approach Closes jrl-umi3218#57
gergondet
added a commit
to gergondet/Tasks
that referenced
this issue
May 31, 2022
This commit greatly simplifies the handling of mimic joints' substitution in the problem with a more straight forward approach Closes jrl-umi3218#57
gergondet
added a commit
to gergondet/Tasks
that referenced
this issue
May 31, 2022
This commit greatly simplifies the handling of mimic joints' substitution in the problem with a more straight forward approach Closes jrl-umi3218#57
gergondet
added a commit
that referenced
this issue
May 31, 2022
This commit greatly simplifies the handling of mimic joints' substitution in the problem with a more straight forward approach Closes #57
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We found with @gergondet yesterday an issue in the reduceQC function: cross-terms in
alpha_i * alpha_j
are missing in the computation of Q.Mimic joints can be written
m_i = alpha_i * q_i + offset_i
, so thatmdd_i = alpha_i * qdd_i
, or in matrix formmdd = A * qdd
. Then, the calculation should look like this (z=mdd
andx=qdd
):This is a substitution. We should update the function, or convince @aescande to demonstrate the power of tvm here 😉
The text was updated successfully, but these errors were encountered: