1 #include "header/manipulabilityTask.h" 3 ManipulabilityTask::ManipulabilityTask(
int dim,
bool eqType, std::string robotName)
4 :
Task(dim, eqType, robotName,
"MANIPULABILITY"){
11 int ManipulabilityTask::updateMatrices(
struct Infos*
const robInfo){
20 int ManipulabilityTask::setJacobian(){
28 void ManipulabilityTask::setReference(){
29 reference = gain * (0.12 - mu)
37 void ManipulabilityTask::setActivation(){
38 A = CMAT::DecreasingBellShapedFunction(0.02, 0.05, 0, 1, mu);
ABSTRACT class task. Each task is a derived class of this class. It contains all the variable that th...