LieVector is a wrapper around vector to allow it to be a Lie type.
|
|
|
| LieMatrix () |
| | default constructor - should be unnecessary
|
| |
|
| LieMatrix (const Matrix &v) |
| | initialize from a normal matrix
|
| |
|
template<int M, int N> |
| | LieMatrix (const Eigen::Matrix< double, M, N > &v) |
| | initialize from a fixed size normal vector
|
| |
|
| LieMatrix (size_t m, size_t n, const double *const data) |
| | constructor with size and initial data, row order !
|
| |
|
| GTSAM_EXPORT void | print (const std::string &name="") const |
| | print More...
|
| |
|
bool | equals (const LieMatrix &expected, double tol=1e-5) const |
| | equality up to tolerance
|
| |
|
|
Matrix | matrix () const |
| | get the underlying vector
|
| |
|
|
size_t | dim () const |
| | Returns dimensionality of the tangent space.
|
| |
| LieMatrix | retract (const Vector &v) const |
| | Update the LieMatrix with a tangent space update. More...
|
| |
| Vector | localCoordinates (const LieMatrix &t2) const |
| |
| virtual Value * | clone_ () const |
| | Create a duplicate object returned as a pointer to the generic Value interface. More...
|
| |
|
virtual void | deallocate_ () const |
| | Destroy and deallocate this object, only if it was originally allocated using clone_().
|
| |
|
virtual boost::shared_ptr< Value > | clone () const |
| | Clone this value (normal clone on the heap, delete with 'delete' operator)
|
| |
|
virtual bool | equals_ (const Value &p, double tol=1e-9) const |
| | equals implementing generic Value interface
|
| |
|
virtual Value * | retract_ (const Vector &delta) const |
| | Generic Value interface version of retract.
|
| |
|
virtual Vector | localCoordinates_ (const Value &value2) const |
| | Generic Value interface version of localCoordinates.
|
| |
|
virtual Value & | operator= (const Value &rhs) |
| | Assignment operator.
|
| |
|
| operator const LieMatrix & () const |
| | Conversion to the derived class.
|
| |
|
| operator LieMatrix & () |
| | Conversion to the derived class.
|
| |
|
virtual | ~Value () |
| | Virutal destructor.
|
| |