|
GTSAM
4.0.2
C++ library for smoothing and mapping (SAM)
|
#include <LinearizedFactor.h>


Public Types | |
| typedef LinearizedGaussianFactor | Base |
| typedef LinearizedHessianFactor | This |
| typedef std::shared_ptr< LinearizedHessianFactor > | shared_ptr |
| typedef SymmetricBlockMatrix::Block | Block |
| A block from the Hessian matrix. More... | |
| typedef SymmetricBlockMatrix::constBlock | constBlock |
| A block from the Hessian matrix (const version) | |
| typedef SymmetricBlockMatrix::Block::ColXpr | Column |
| A column containing the linear term h. | |
| typedef SymmetricBlockMatrix::constBlock::ColXpr | constColumn |
| A column containing the linear term h (const version) | |
| typedef KeyVector::iterator | iterator |
| Iterator over keys. | |
| typedef KeyVector::const_iterator | const_iterator |
| Const iterator over keys. | |
Public Member Functions | |
| LinearizedHessianFactor () | |
| LinearizedHessianFactor (const HessianFactor::shared_ptr &hessian, const Values &lin_points) | |
| gtsam::NonlinearFactor::shared_ptr | clone () const override |
| void | print (const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override |
| bool | equals (const NonlinearFactor &expected, double tol=1e-9) const override |
| double | constantTerm () const |
| constColumn | linearTerm (const_iterator j) const |
| constColumn | linearTerm () const |
| Matrix | squaredTerm (const_iterator j1, const_iterator j2) const |
| Eigen::SelfAdjointView< constBlock, Eigen::Upper > | squaredTerm () const |
| size_t | dim () const override |
| double | error (const Values &c) const override |
| std::shared_ptr< GaussianFactor > | linearize (const Values &c) const override |
| const Values & | linearizationPoint () const |
Testable | |
| bool | equals (const This &other, double tol=1e-9) const |
| check equality | |
| virtual void | printKeys (const std::string &s="Factor", const KeyFormatter &formatter=DefaultKeyFormatter) const |
| print only keys | |
Standard Interface | |
| double | error (const HybridValues &c) const override |
| virtual bool | active (const Values &) const |
| virtual shared_ptr | rekey (const std::map< Key, Key > &rekey_mapping) const |
| virtual shared_ptr | rekey (const KeyVector &new_keys) const |
| virtual bool | sendable () const |
Standard Interface | |
| bool | empty () const |
| Whether the factor is empty (involves zero variables). | |
| Key | front () const |
| First key. | |
| Key | back () const |
| Last key. | |
| const_iterator | find (Key key) const |
| find | |
| const KeyVector & | keys () const |
| Access the factor's involved variable keys. | |
| const_iterator | begin () const |
| const_iterator | end () const |
| size_t | size () const |
Advanced Interface | |
| KeyVector & | keys () |
| iterator | begin () |
| iterator | end () |
Static Protected Member Functions | |
Standard Constructors | |
| template<typename CONTAINER > | |
| static Factor | FromKeys (const CONTAINER &keys) |
| template<typename ITERATOR > | |
| static Factor | FromIterators (ITERATOR first, ITERATOR last) |
Protected Attributes | |
| SymmetricBlockMatrix | info_ |
| Values | lin_points_ |
| KeyVector | keys_ |
| The keys involved in this factor. | |
A factor that takes a linear, Hessian factor and inserts it into a nonlinear graph.
base type
| typedef SymmetricBlockMatrix::Block gtsam::LinearizedHessianFactor::Block |
A block from the Hessian matrix.
hessian block data types
| typedef std::shared_ptr<LinearizedHessianFactor> gtsam::LinearizedHessianFactor::shared_ptr |
shared pointer for convenience
| gtsam::LinearizedHessianFactor::LinearizedHessianFactor | ( | ) |
default constructor for serialization
| gtsam::LinearizedHessianFactor::LinearizedHessianFactor | ( | const HessianFactor::shared_ptr & | hessian, |
| const Values & | lin_points | ||
| ) |
Use this constructor with the ordering used to linearize the graph
| hessian | A hessian factor |
| lin_points | The linearization points for, at least, the variables used by this factor |
|
inlinevirtualinherited |
Checks whether a factor should be used based on a set of values. This is primarily used to implement inequality constraints that require a variable active set. For all others, the default implementation returning true solves this problem.
In an inequality/bounding constraint, this active() returns true when the constraint is NOT fulfilled.
Reimplemented in gtsam::BoundingConstraint2< VALUE1, VALUE2 >, gtsam::AntiFactor, and gtsam::BoundingConstraint1< VALUE >.
|
inlineinherited |
Iterator at beginning of involved variable keys
|
inlineinherited |
Iterator at beginning of involved variable keys
|
inlineoverridevirtual |
Reimplemented from gtsam::NonlinearFactor.
|
inline |
Return the constant term \( f \) as described above
|
inlineoverridevirtual |
get the dimension of the factor (number of rows on linearization)
Implements gtsam::NonlinearFactor.
|
inlineinherited |
Iterator at end of involved variable keys
|
inlineinherited |
Iterator at end of involved variable keys
|
overridevirtual |
equals function with optional tolerance
Reimplemented from gtsam::NonlinearFactor.
|
overridevirtualinherited |
All factor types need to implement an error function. In factor graphs, this is the negative log-likelihood.
Reimplemented from gtsam::Factor.
|
overridevirtual |
Calculate the error of the factor
Reimplemented from gtsam::NonlinearFactor.
|
inlinestaticprotectedinherited |
Construct factor from iterator keys. This is called internally from derived factor static factor methods, as a workaround for not being able to call the protected constructors above.
|
inlinestaticprotectedinherited |
Construct factor from container of keys. This is called internally from derived factor static factor methods, as a workaround for not being able to call the protected constructors above.
|
inlineinherited |
|
overridevirtual |
linearize to a GaussianFactor Reimplemented from NoiseModelFactor to directly copy out the matrices and only update the RHS b with an updated residual
Implements gtsam::NonlinearFactor.
|
inline |
Return the part of linear term \( g \) as described above corresponding to the requested variable.
| j | Which block row to get, as an iterator pointing to the slot in this factor. You can use, for example, begin() + 2 to get the 3rd variable in this factor. |
|
inline |
Return the complete linear term \( g \) as described above.
|
overridevirtual |
print function
Reimplemented from gtsam::NonlinearFactor.
|
virtualinherited |
Creates a shared_ptr clone of the factor with different keys using a map from old->new keys
Reimplemented in gtsam::LinearContainerFactor.
|
virtualinherited |
Clones a factor and fully replaces its keys
| new_keys | is the full replacement set of keys |
Reimplemented in gtsam::LinearContainerFactor.
|
inlinevirtualinherited |
Should the factor be evaluated in the same thread as the caller This is to enable factors that has shared states (like the Python GIL lock)
Reimplemented in gtsam::CustomFactor.
|
inlineinherited |
|
inline |
Return a copy of the block at (j1,j2) of the upper-triangular part of the squared term \( H \), no data is copied. See HessianFactor class documentation above to explain that only the upper-triangular part of the information matrix is stored and returned by this function.
| j1 | Which block row to get, as an iterator pointing to the slot in this factor. You can use, for example, begin() + 2 to get the 3rd variable in this factor. |
| j2 | Which block column to get, as an iterator pointing to the slot in this factor. You can use, for example, begin() + 2 to get the 3rd variable in this factor. |
|
inline |
Return the upper-triangular part of the full squared term, as described above. See HessianFactor class documentation above to explain that only the upper-triangular part of the information matrix is stored and returned by this function.
|
protected |
The block view of the full information matrix, s.t. the quadratic error is 0.5*[x -1]'H[x -1]
|
protectedinherited |
linearization points for error calculation
1.8.13