modern_robotics
velocity_kinematics_and_statics.hpp
Go to the documentation of this file.
1 #ifndef MODERN_ROBOTICS__VELOCITY_KINEMATICS_AND_STATICS_HPP___
2 #define MODERN_ROBOTICS__VELOCITY_KINEMATICS_AND_STATICS_HPP___
3 
4 #include <armadillo>
5 
6 namespace mr
7 {
9 
17 const arma::mat JacobianBody(
18  const std::vector<arma::vec6> & Blist,
19  const arma::vec & thetalist
20 );
21 
29 const arma::mat JacobianSpace(
30  const std::vector<arma::vec6> & Slist,
31  const arma::vec & thetalist
32 );
33 }
34 
35 #endif
const arma::mat JacobianSpace(const std::vector< arma::vec6 > &Slist, const arma::vec &thetalist)
Computes the space Jacobian for an open chain robot.
Definition: velocity_kinematics_and_statics.cpp:33
const arma::mat JacobianBody(const std::vector< arma::vec6 > &Blist, const arma::vec &thetalist)
Computes the body Jacobian for an open chain robot.
Definition: velocity_kinematics_and_statics.cpp:6
Definition: dynamics_of_open_chains.hpp:7