1 #include "header/lastTask.h" 3 LastTask::LastTask(
int dim,
bool eqType, std::string robotName)
4 :
Task(dim, eqType, robotName,
"LAST_TASK"){
7 J = CMAT::Matrix::Eye(dimension);
8 A = CMAT::Matrix::Eye(dimension);
9 reference = CMAT::Matrix::Zeros(dimension,1);
14 int LastTask::updateMatrices(
struct Infos*
const robInfo){
ABSTRACT class task. Each task is a derived class of this class. It contains all the variable that th...