sot-core
4.11.8
Hierarchical task solver plug-in for dynamic-graph.
|
Go to the documentation of this file.
10 #ifndef __SOT_FEATURE_1D_HH__
11 #define __SOT_FEATURE_1D_HH__
26 #if defined(feature_1d_EXPORTS)
27 #define SOTFEATURE1D_EXPORT __declspec(dllexport)
29 #define SOTFEATURE1D_EXPORT __declspec(dllimport)
32 #define SOTFEATURE1D_EXPORT
54 virtual const std::string &
getClassName(
void)
const {
return CLASS_NAME; }
66 dynamicgraph::SignalPtr<dynamicgraph::Vector, int>
errorSIN;
69 dynamicgraph::SignalPtr<dynamicgraph::Matrix, int>
jacobianSIN;
92 virtual unsigned int &getDimension(
unsigned int &dim,
int time);
100 virtual dynamicgraph::Vector &computeError(dynamicgraph::Vector &res,
104 virtual dynamicgraph::Matrix &computeJacobian(dynamicgraph::Matrix &res,
110 virtual void display(std::ostream &os)
const;
122 #endif // #ifndef __SOT_FEATURE_1D_HH__
SignalTimeDependent< dynamicgraph::Matrix, int > jacobianSOUT
Jacobian of the error wrt the robot state: .
Definition: feature-abstract.hh:193
SignalTimeDependent< dynamicgraph::Vector, int > errorSOUT
This signal returns the error between the desired value and the current value : .
Definition: feature-abstract.hh:185
Definition: feature-abstract.hh:229
Definition: abstract-sot-external-interface.hh:17
static const std::string CLASS_NAME
Definition: feature-1d.hh:52
#define DECLARE_REFERENCE_FUNCTIONS(FeatureSpecialized)
Definition: feature-abstract.hh:251
Simple test: the task is defined to be e_2 = .5 . e'.e, with e the mother task. The jacobian is then ...
Definition: feature-1d.hh:48
This class gives the abstract definition of a feature.
Definition: feature-abstract.hh:76
#define SOTFEATURE1D_EXPORT
Definition: feature-1d.hh:32
dynamicgraph::SignalPtr< dynamicgraph::Vector, int > errorSIN
Input for the error.
Definition: feature-1d.hh:66
virtual ~Feature1D(void)
Default destructor.
Definition: feature-1d.hh:89
dynamicgraph::SignalPtr< dynamicgraph::Matrix, int > jacobianSIN
Input for the Jacobian.
Definition: feature-1d.hh:69
virtual const std::string & getClassName(void) const
Definition: feature-1d.hh:54