Skip to content
Discussion options

You must be logged in to vote

Hello,

The forward kinematics and jacobian are generated procedurally and numerically within the API, and so we do not have a symbolic function for either of these that we can expose. However, you should be able to numerically differentiate the Jacobian matrix or double-differentiate the forward kinematics. In these cases, you can perturb with a small joint angle perturbation dTheta around the current angle position, and use the resulting matrices to generate your numerical derivative. For example:

dJ(theta)/dTheta = (J(theta + dTheta) - J(theta)) / dTheta

Depending on your requirements, you can make this derivative unbiased by centering your Jacobian computations around theta instead of …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by GogiPuttar
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Python
Labels
question Questions, comments or problems
1 participant