-
Notifications
You must be signed in to change notification settings - Fork 68
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
Add setWorldBaseTransform function to KinDynComputations and high-level Matlab wrappers #1164
Add setWorldBaseTransform function to KinDynComputations and high-level Matlab wrappers #1164
Conversation
Now, I will try to generate the Matlab bindings following generating-idyntree-matlab-bindings.md |
I am getting the following error when running
|
Do you have MATLAB installed in the system? What is the |
Yes, here the CMakeCache.txt
|
Ok, somehow is not finding the
|
The
Then I tried with
And indeed there is not the |
That is interesting, by looking into idyntree/bindings/matlab/CMakeLists.txt Line 118 in d6af7ff
Can you try to add:
right before idyntree/bindings/matlab/CMakeLists.txt Line 118 in d6af7ff
Thanks! Note that in general this is not required as setting the include directories is handled by passing to |
Awesome, it worked! I have included the line |
In the new implementation we call the SetRobotState member function. Moreover, a new private data member is added. It is called m_baseVel and stores the base velocity in the m_frameVelRepr.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor comments, thanks!
Co-authored-by: Silvio Traversaro <[email protected]>
Thanks @LoreMoretti ! |
This PR addresses #1082.