#include <cmath>
#include <yarp/sig/Vector.h>
#include <yarp/sig/Matrix.h>
#include <yarp/math/Math.h>
Go to the source code of this file.
|
| iCub |
| This file contains the definition of unique IDs for the body parts and the skin parts of the robot.
|
|
| iCub::ctrl |
|
|
double | iCub::ctrl::dot (const yarp::sig::Matrix &A, int colA, const yarp::sig::Matrix &B, int colB) |
| Returns the dot product between two vectors given in the form: matrix(:,col). More...
|
|
double | iCub::ctrl::norm2 (const yarp::sig::Matrix &M, int col) |
| Returns the squared norm of the vector given in the form: matrix(:,col). More...
|
|
double | iCub::ctrl::norm (const yarp::sig::Matrix &M, int col) |
| Returns the norm of the vector given in the form: matrix(:,col). More...
|
|
yarp::sig::Vector | iCub::ctrl::cross (const yarp::sig::Matrix &A, int colA, const yarp::sig::Matrix &B, int colB) |
| Returns the cross product between two vectors given in the form: matrix(:,col). More...
|
|
yarp::sig::Vector | iCub::ctrl::Dcross (const yarp::sig::Vector &a, const yarp::sig::Vector &Da, const yarp::sig::Vector &b, const yarp::sig::Vector &Db) |
| Returns the derivatice of cross product between two vectors. More...
|
|
yarp::sig::Vector | iCub::ctrl::Dcross (const yarp::sig::Matrix &A, const yarp::sig::Matrix &DA, int colA, const yarp::sig::Matrix &B, const yarp::sig::Matrix &DB, int colB) |
| Returns the derivative of cross product between two vectors given in the form: matrix(:,col). More...
|
|